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 | f1087d880d002e2f4bde6adad1592bda91460d12 (patch) | |
tree | 4299342b1275cda0c626877485a02fa8fdd7c1d5 /src/app/treeview.cpp | |
parent | ff8c66f117613688a0979d2296cbf6c778136419 (diff) | |
download | gwenview-f1087d880d002e2f4bde6adad1592bda91460d12.tar.gz gwenview-f1087d880d002e2f4bde6adad1592bda91460d12.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gwenview@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/app/treeview.cpp')
-rw-r--r-- | src/app/treeview.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/app/treeview.cpp b/src/app/treeview.cpp index a8c7b59..3ee9e4a 100644 --- a/src/app/treeview.cpp +++ b/src/app/treeview.cpp @@ -55,10 +55,10 @@ struct TreeView::Private { KFileTreeViewItem* mDropTarget; TQTimer* mAutoOpenTimer; - KFileTreeViewItem* findViewItem(KFileTreeViewItem* tqparent,const TQString& text) { + KFileTreeViewItem* findViewItem(KFileTreeViewItem* parent,const TQString& text) { TQListViewItem* item; - for (item=tqparent->firstChild();item;item=item->nextSibling()) { + for (item=parent->firstChild();item;item=item->nextSibling()) { if (item->text(0)==text) { return static_cast<KFileTreeViewItem*>(item); } @@ -114,8 +114,8 @@ struct TreeView::Private { }; -TreeView::TreeView(TQWidget* tqparent) -: KFileTreeView(tqparent) { +TreeView::TreeView(TQWidget* parent) +: KFileTreeView(parent) { d=new Private; d->mView=this; d->mBranch=0; @@ -180,7 +180,7 @@ void TreeView::slotTreeViewPopulateFinished(KFileTreeViewItem* item) { return; } - // This URL is not a tqparent of a wanted URL, get out + // This URL is not a parent of a wanted URL, get out if (!url.isParentOf(m_nextUrlToSelect)) return; // Find the next child item and open it |