summaryrefslogtreecommitdiffstats
path: root/kdirstat/kdirtreeview.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit44af2b7aa26c61f2f059acc7a9726319cacaabcf (patch)
tree09c93f4a6fdef07c083e731d9f327850e83a6bf5 /kdirstat/kdirtreeview.h
parentb8e1a56a901671dbd336c9bfd129dfb72a0cc41f (diff)
downloadkdirstat-44af2b7aa26c61f2f059acc7a9726319cacaabcf.tar.gz
kdirstat-44af2b7aa26c61f2f059acc7a9726319cacaabcf.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdirstat@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdirstat/kdirtreeview.h')
-rw-r--r--kdirstat/kdirtreeview.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdirstat/kdirtreeview.h b/kdirstat/kdirtreeview.h
index 8e12113..8c9fe8d 100644
--- a/kdirstat/kdirtreeview.h
+++ b/kdirstat/kdirtreeview.h
@@ -12,7 +12,7 @@
#define KDirTreeView_h
-// Alternative tqparent class for KDirTreeView.
+// Alternative parent class for KDirTreeView.
//
// If you change this, don't forget to change the KDirTreeView class
// declaration also. Unfortunately there this 'define' can't be used -
@@ -71,7 +71,7 @@ namespace KDirStat
/**
* Default constructor.
**/
- KDirTreeView( TQWidget * tqparent = 0 );
+ KDirTreeView( TQWidget * parent = 0 );
/**
* Destructor.
@@ -193,7 +193,7 @@ namespace KDirStat
* inevitably be the case for a white background (which unfortunately
* is very common): The percentage bars use white and black for 3D
* borders - like any other widget. But other widgets normally can
- * assume their tqparent widget uses some more neutral color so white and
+ * assume their parent widget uses some more neutral color so white and
* black will result in at least some minimal contrast.
*
* This function automagically sets a reasonable default background
@@ -580,7 +580,7 @@ namespace KDirStat
* Constructor for all other items.
**/
KDirTreeViewItem ( KDirTreeView * view,
- KDirTreeViewItem * tqparent,
+ KDirTreeViewItem * parent,
KFileInfo * orig );
/**
@@ -630,9 +630,9 @@ namespace KDirStat
/**
- * Returns the tqparent view item or 0 if this is the root.
+ * Returns the parent view item or 0 if this is the root.
**/
- KDirTreeViewItem * tqparent() { return _parent; }
+ KDirTreeViewItem * parent() { return _parent; }
/**
* Returns the corresponding original item of the "real" (vs. view)
@@ -721,7 +721,7 @@ namespace KDirStat
/**
* Remove dot entry if it doesn't have any tqchildren.
- * Retqparent all of the dot entry's tqchildren if there are no
+ * Reparent all of the dot entry's tqchildren if there are no
* subdirectories on this level.
**/
void cleanupDotEntries();
@@ -779,7 +779,7 @@ namespace KDirStat
* Initializations common to all constructors.
**/
void init ( KDirTreeView * view,
- KDirTreeViewItem * tqparent,
+ KDirTreeViewItem * parent,
KFileInfo * orig );
protected: