diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 90363652674deb94cd07057428b24fcb1735dbce (patch) | |
tree | 35013223cb731f194f8584cc1c06a023c3c75c85 /konq-plugins/fsview/inode.cpp | |
parent | 627b091fad9df13695f249588e8a58f524eda0fa (diff) | |
download | tdeaddons-90363652674deb94cd07057428b24fcb1735dbce.tar.gz tdeaddons-90363652674deb94cd07057428b24fcb1735dbce.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konq-plugins/fsview/inode.cpp')
-rw-r--r-- | konq-plugins/fsview/inode.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/konq-plugins/fsview/inode.cpp b/konq-plugins/fsview/inode.cpp index 849877e..d4875c2 100644 --- a/konq-plugins/fsview/inode.cpp +++ b/konq-plugins/fsview/inode.cpp @@ -40,12 +40,12 @@ Inode::Inode() init(""); } -Inode::Inode(ScanDir* d, Inode* tqparent) - : TreeMapItem(tqparent) +Inode::Inode(ScanDir* d, Inode* parent) + : TreeMapItem(parent) { TQString absPath; - if (tqparent) { - absPath = tqparent->path(); + if (parent) { + absPath = parent->path(); if (!absPath.endsWith("/")) absPath += "/"; } absPath += d->name(); @@ -56,12 +56,12 @@ Inode::Inode(ScanDir* d, Inode* tqparent) init(absPath); } -Inode::Inode(ScanFile* f, Inode* tqparent) - : TreeMapItem(tqparent) +Inode::Inode(ScanFile* f, Inode* parent) + : TreeMapItem(parent) { TQString absPath; - if (tqparent) - absPath = tqparent->path() + "/"; + if (parent) + absPath = parent->path() + "/"; absPath += f->name(); _dirPeer = 0; |