summaryrefslogtreecommitdiffstats
path: root/libk3b/core
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit85723d544dd6aad9b2d0974dfe91ece438f03dfb (patch)
tree3baf4e3989ae66eef01b9cccc55501a1d0cfe5eb /libk3b/core
parenta9a875756e14547b1d362ff6062b735b9f139d32 (diff)
downloadk3b-85723d544dd6aad9b2d0974dfe91ece438f03dfb.tar.gz
k3b-85723d544dd6aad9b2d0974dfe91ece438f03dfb.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk3b/core')
-rw-r--r--libk3b/core/k3bglobals.cpp2
-rw-r--r--libk3b/core/k3bglobals.h2
-rw-r--r--libk3b/core/k3bjob.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/libk3b/core/k3bglobals.cpp b/libk3b/core/k3bglobals.cpp
index f5a9e29..401950e 100644
--- a/libk3b/core/k3bglobals.cpp
+++ b/libk3b/core/k3bglobals.cpp
@@ -189,7 +189,7 @@ TQString K3b::prepareDir( const TQString& dir )
}
-TQString K3b::tqparentDir( const TQString& path )
+TQString K3b::parentDir( const TQString& path )
{
TQString tqparent = path;
if( path[path.length()-1] == '/' )
diff --git a/libk3b/core/k3bglobals.h b/libk3b/core/k3bglobals.h
index 56f7f1b..6554d7d 100644
--- a/libk3b/core/k3bglobals.h
+++ b/libk3b/core/k3bglobals.h
@@ -166,7 +166,7 @@ namespace K3b
*
* Example: /usr/share/doc -> /usr/share/
*/
- TQString tqparentDir( const TQString& path );
+ TQString parentDir( const TQString& path );
/**
* For now this just replaces multiple occurrences of / with a single /
diff --git a/libk3b/core/k3bjob.h b/libk3b/core/k3bjob.h
index c35118a..b64b85b 100644
--- a/libk3b/core/k3bjob.h
+++ b/libk3b/core/k3bjob.h
@@ -207,7 +207,7 @@ class LIBK3B_EXPORT K3bJob : public TQObject, public K3bJobHandler
* \param hdl the handler of the job. This allows for some user interaction without
* specifying any details (like the GUI).
* The job handler can also be another job. In that case this job is a sub job
- * and will be part of the tqparents running sub jobs.
+ * and will be part of the parents running sub jobs.
*
* \see runningSubJobs()
* \see numRunningSubJobs()