summaryrefslogtreecommitdiffstats
path: root/konq-plugins/fsview/inode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konq-plugins/fsview/inode.cpp')
-rw-r--r--konq-plugins/fsview/inode.cpp16
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;