summaryrefslogtreecommitdiffstats
path: root/kdirstat/kdirtree.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/kdirtree.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/kdirtree.h')
-rw-r--r--kdirstat/kdirtree.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/kdirstat/kdirtree.h b/kdirstat/kdirtree.h
index 0de058f..b00767e 100644
--- a/kdirstat/kdirtree.h
+++ b/kdirstat/kdirtree.h
@@ -106,7 +106,7 @@ namespace KDirStat
* Default constructor.
**/
KFileInfo( KDirTree * tree,
- KDirInfo * tqparent = 0,
+ KDirInfo * parent = 0,
const char * name = 0 );
/**
@@ -115,14 +115,14 @@ namespace KDirStat
KFileInfo( const TQString & filenameWithoutPath,
struct stat * statInfo,
KDirTree * tree,
- KDirInfo * tqparent = 0 );
+ KDirInfo * parent = 0 );
/**
* Constructor from a KFileItem, i.e. from a @ref KIO::StatJob
**/
KFileInfo( const KFileItem * fileItem,
KDirTree * tree,
- KDirInfo * tqparent = 0 );
+ KDirInfo * parent = 0 );
/**
* Destructor.
@@ -337,13 +337,13 @@ namespace KDirStat
KDirTree * tree() const { return _tree; }
/**
- * Returns a pointer to this entry's tqparent entry or 0 if there is
+ * Returns a pointer to this entry's parent entry or 0 if there is
* none.
**/
- KDirInfo * tqparent() const { return _parent; }
+ KDirInfo * parent() const { return _parent; }
/**
- * Set the "tqparent" pointer.
+ * Set the "parent" pointer.
**/
void setParent( KDirInfo *newParent ) { _parent = newParent; }
@@ -572,9 +572,9 @@ namespace KDirStat
KFileSize _blocks; // 512 bytes blocks
time_t _mtime; // modification time
- KDirInfo * _parent; // pointer to the tqparent entry
+ KDirInfo * _parent; // pointer to the parent entry
KFileInfo * _next; // pointer to the next entry
- KDirTree * _tree; // pointer to the tqparent tree
+ KDirTree * _tree; // pointer to the parent tree
}; // class KFileInfo
@@ -592,13 +592,13 @@ namespace KDirStat
/**
* Default constructor.
*
- * If "asDotEntry" is set, this will be used as the tqparent's
- * "dot entry", i.e. the pseudo directory that holds all the tqparent's
+ * If "asDotEntry" is set, this will be used as the parent's
+ * "dot entry", i.e. the pseudo directory that holds all the parent's
* non-directory tqchildren. This is the only way to create a "dot
* entry"!
**/
KDirInfo( KDirTree * tree,
- KDirInfo * tqparent = 0,
+ KDirInfo * parent = 0,
bool asDotEntry = false );
/**
@@ -607,14 +607,14 @@ namespace KDirStat
KDirInfo( const TQString & filenameWithoutPath,
struct stat * statInfo,
KDirTree * tree,
- KDirInfo * tqparent = 0 );
+ KDirInfo * parent = 0 );
/**
* Constructor from a KFileItem, i.e. from a @ref KIO::StatJob
**/
KDirInfo( const KFileItem * fileItem,
KDirTree * tree,
- KDirInfo * tqparent = 0 );
+ KDirInfo * parent = 0 );
/**
* Destructor.
@@ -849,7 +849,7 @@ namespace KDirStat
/**
* Clean up unneeded / undesired dot entries:
* Delete dot entries that don't have any tqchildren,
- * reparent dot entry tqchildren to the "real" (tqparent) directory if
+ * reparent dot entry tqchildren to the "real" (parent) directory if
* there are not subdirectory siblings at the level of the dot entry.
**/
void cleanupDotEntries();
@@ -897,7 +897,7 @@ namespace KDirStat
* KDirTree.
*
* For each entry automatically a @ref KFileInfo or @ref KDirInfo will be
- * created and added to the tqparent @ref KDirInfo. For each directory a new
+ * created and added to the parent @ref KDirInfo. For each directory a new
* @ref KDirReadJob will be created and added to the @ref KDirTree 's job
* queue.
*
@@ -1007,7 +1007,7 @@ namespace KDirStat
**/
static KFileInfo * stat( const KURL & url,
KDirTree * tree,
- KDirInfo * tqparent = 0 );
+ KDirInfo * parent = 0 );
protected:
DIR * _diskDir;
@@ -1058,7 +1058,7 @@ namespace KDirStat
**/
static KFileInfo * stat( const KURL & url,
KDirTree * tree,
- KDirInfo * tqparent = 0 );
+ KDirInfo * parent = 0 );
/**
* Obtain the owner of the URL specified.