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 | 936370a6413e14b322ce808be07c6c66714941b6 (patch) | |
tree | 31b9f37bb64beac5eddafef05312da5b48736bd6 /libktorrent/interfaces/filetreediritem.cpp | |
parent | 2a99db3ebc4c211e436f95fde24b5ac6826d0267 (diff) | |
download | ktorrent-936370a6413e14b322ce808be07c6c66714941b6.tar.gz ktorrent-936370a6413e14b322ce808be07c6c66714941b6.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libktorrent/interfaces/filetreediritem.cpp')
-rw-r--r-- | libktorrent/interfaces/filetreediritem.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libktorrent/interfaces/filetreediritem.cpp b/libktorrent/interfaces/filetreediritem.cpp index 7cb78ca..86481f2 100644 --- a/libktorrent/interfaces/filetreediritem.cpp +++ b/libktorrent/interfaces/filetreediritem.cpp @@ -37,7 +37,7 @@ namespace kt FileTreeDirItem::FileTreeDirItem(KListView* klv,const TQString & name,FileTreeRootListener* rl) : TQCheckListItem(klv,TQString(),TQCheckListItem::CheckBox),name(name),root_listener(rl) { - tqparent = 0; + parent = 0; size = 0; setPixmap(0,KGlobal::iconLoader()->loadIcon("folder",KIcon::Small)); setText(0,name); @@ -48,9 +48,9 @@ namespace kt manual_change = false; } - FileTreeDirItem::FileTreeDirItem(FileTreeDirItem* tqparent,const TQString & name) - : TQCheckListItem(tqparent,TQString(),TQCheckListItem::CheckBox), - name(name),tqparent(tqparent) + FileTreeDirItem::FileTreeDirItem(FileTreeDirItem* parent,const TQString & name) + : TQCheckListItem(parent,TQString(),TQCheckListItem::CheckBox), + name(name),parent(parent) { size = 0; setPixmap(0,KGlobal::iconLoader()->loadIcon("folder",KIcon::Small)); @@ -161,8 +161,8 @@ namespace kt return; } } - if (tqparent) - tqparent->childStateChange(); + if (parent) + parent->childStateChange(); } setText(2,on ? i18n("Yes") : i18n("No")); } @@ -219,8 +219,8 @@ namespace kt setOn(allChildrenOn()); manual_change = false; - if (tqparent) - tqparent->childStateChange(); + if (parent) + parent->childStateChange(); else if (root_listener) root_listener->treeItemChanged(); @@ -286,10 +286,10 @@ namespace kt TQString FileTreeDirItem::getPath() const { - if (!tqparent) + if (!parent) return bt::DirSeparator(); else - return tqparent->getPath() + name + bt::DirSeparator(); + return parent->getPath() + name + bt::DirSeparator(); } } |