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 | c6b29717327388357badda064ef1ced71932406e (patch) | |
tree | 5d0dadae0d00c60e0773be4e8ee5a60a47615342 /src/svnfrontend/filelistviewitem.cpp | |
parent | 93f9fda465964160b66d9252d2cf9b4c284eab50 (diff) | |
download | tdesvn-c6b29717327388357badda064ef1ced71932406e.tar.gz tdesvn-c6b29717327388357badda064ef1ced71932406e.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/svnfrontend/filelistviewitem.cpp')
-rw-r--r-- | src/svnfrontend/filelistviewitem.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/svnfrontend/filelistviewitem.cpp b/src/svnfrontend/filelistviewitem.cpp index ba7ce12..4747bfd 100644 --- a/src/svnfrontend/filelistviewitem.cpp +++ b/src/svnfrontend/filelistviewitem.cpp @@ -46,21 +46,21 @@ const int FileListViewItem::COL_IS_LOCKED = 5; //const int FileListViewItem::COL_CURRENT_REV = 5; -FileListViewItem::FileListViewItem(kdesvnfilelist*_tqparent,const svn::StatusPtr&_stat) - : KListViewItem(_tqparent),SvnItem(_stat), +FileListViewItem::FileListViewItem(kdesvnfilelist*_parent,const svn::StatusPtr&_stat) + : KListViewItem(_parent),SvnItem(_stat), sortChar(0), - m_Ksvnfilelist(_tqparent) + m_Ksvnfilelist(_parent) { - m_SvnWrapper = _tqparent->m_SvnWrapper; + m_SvnWrapper = _parent->m_SvnWrapper; init(); } -FileListViewItem::FileListViewItem(kdesvnfilelist*_tqparent,FileListViewItem*_parentItem,const svn::StatusPtr&_stat) +FileListViewItem::FileListViewItem(kdesvnfilelist*_parent,FileListViewItem*_parentItem,const svn::StatusPtr&_stat) : KListViewItem(_parentItem),SvnItem(_stat), sortChar(0), - m_Ksvnfilelist(_tqparent) + m_Ksvnfilelist(_parent) { - m_SvnWrapper = _tqparent->m_SvnWrapper; + m_SvnWrapper = _parent->m_SvnWrapper; init(); } @@ -130,7 +130,7 @@ void FileListViewItem::refreshtqStatus(bool childs,TQPtrList<SvnItem>*exclude,bo if (!isValid()) { return; } - it = static_cast<FileListViewItem*>(tqparent()); + it = static_cast<FileListViewItem*>(parent()); if (!childs) { if (it && (!exclude || exclude->find(it)==-1)) { it->refreshtqStatus(false,exclude); @@ -174,7 +174,7 @@ bool FileListViewItem::isParent(TQListViewItem*which) { if (!which) return false; TQListViewItem*item = this; - while ( (item=item->tqparent())) { + while ( (item=item->parent())) { if (item==which) { return true; } @@ -235,7 +235,7 @@ void FileListViewItem::updatetqStatus(const svn::StatusPtr&s) SvnItem* FileListViewItem::getParentItem()const { - return static_cast<FileListViewItem*>(tqparent()); + return static_cast<FileListViewItem*>(parent()); } /*! \fn FileListViewItem::getParentDir()const |