diff options
Diffstat (limited to 'src/svnfrontend/graphtree/revisiontree.cpp')
-rw-r--r-- | src/svnfrontend/graphtree/revisiontree.cpp | 6 |
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); |