summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/graphtree/revisiontree.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commitc6b29717327388357badda064ef1ced71932406e (patch)
tree5d0dadae0d00c60e0773be4e8ee5a60a47615342 /src/svnfrontend/graphtree/revisiontree.cpp
parent93f9fda465964160b66d9252d2cf9b4c284eab50 (diff)
downloadtdesvn-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/graphtree/revisiontree.cpp')
-rw-r--r--src/svnfrontend/graphtree/revisiontree.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svnfrontend/graphtree/revisiontree.cpp b/src/svnfrontend/graphtree/revisiontree.cpp
index 2f84179..7a2833a 100644
--- a/src/svnfrontend/graphtree/revisiontree.cpp
+++ b/src/svnfrontend/graphtree/revisiontree.cpp
@@ -122,13 +122,13 @@ RevisionTree::RevisionTree(svn::Client*aClient,
const svn::Revision&startr,const svn::Revision&endr,
const TQString&origin,
const svn::Revision& baserevision,
- TQWidget*treeParent,TQWidget*tqparent)
+ TQWidget*treeParent,TQWidget*parent)
:m_InitialRevsion(0),m_Path(origin),m_Valid(false)
{
m_Data = new RtreeData;
m_Data->m_Client=aClient;
m_Data->m_Listener=aListener;
- m_Data->dlgParent=tqparent;
+ m_Data->dlgParent=parent;
if (!m_Data->getLogs(reposRoot,startr,endr,origin)) {
return;
@@ -138,7 +138,7 @@ RevisionTree::RevisionTree(svn::Client*aClient,
kdDebug()<<"Origin: "<<origin << endl;
m_Data->progress=new KProgressDialog(
- tqparent,"progressdlg",i18n("Scanning logs"),i18n("Scanning the logs for %1").tqarg(origin),true);
+ parent,"progressdlg",i18n("Scanning logs"),i18n("Scanning the logs for %1").tqarg(origin),true);
m_Data->progress->setMinimumDuration(100);
m_Data->progress->show();
m_Data->progress->setAllowCancel(true);