summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/graphtree/revgraphview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-07 15:05:28 +0900
committerMichele Calgaro <[email protected]>2023-12-08 20:53:46 +0900
commita2bf0715f2265ba90a79fdb4410e856d4c4226ac (patch)
tree0cbd8d68b4e622430278f0d49b72341f9ebc0bf1 /src/svnfrontend/graphtree/revgraphview.cpp
parent7221e1ed9cb20950cfb09167c6e194ff5c619c16 (diff)
downloadtdesvn-a2bf0715f2265ba90a79fdb4410e856d4c4226ac.tar.gz
tdesvn-a2bf0715f2265ba90a79fdb4410e856d4c4226ac.zip
Replaced various '#define' with actual strings - part 6
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 70a9b1f3fb15c9725f1ad6ba5ffa4b3c1554e97c)
Diffstat (limited to 'src/svnfrontend/graphtree/revgraphview.cpp')
-rw-r--r--src/svnfrontend/graphtree/revgraphview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/svnfrontend/graphtree/revgraphview.cpp b/src/svnfrontend/graphtree/revgraphview.cpp
index b1b574a..ba1693f 100644
--- a/src/svnfrontend/graphtree/revgraphview.cpp
+++ b/src/svnfrontend/graphtree/revgraphview.cpp
@@ -901,7 +901,7 @@ void RevGraphView::makeCat(GraphTreeLabel*_l)
}
svn::Revision tr(it.data().rev);
TQString tp = _basePath+it.data().name;
- emit makeCat(tr,tp,it.data().name,tr,TQT_TQWIDGET(kapp->activeModalWidget()));
+ emit makeCat(tr,tp,it.data().name,tr,kapp->activeModalWidget());
}
void RevGraphView::makeDiffPrev(GraphTreeLabel*_l)
@@ -931,9 +931,9 @@ void RevGraphView::makeDiff(const TQString&n1,const TQString&n2)
svn::Revision tr(it.data().rev);
TQString tp = _basePath+it.data().name;
if (Kdesvnsettings::tree_diff_rec()) {
- emit makeRecDiff(sp,sr,tp,tr,TQT_TQWIDGET(kapp->activeModalWidget()));
+ emit makeRecDiff(sp,sr,tp,tr,kapp->activeModalWidget());
} else {
- emit makeNorecDiff(sp,sr,tp,tr,TQT_TQWIDGET(kapp->activeModalWidget()));
+ emit makeNorecDiff(sp,sr,tp,tr,kapp->activeModalWidget());
}
}
@@ -944,7 +944,7 @@ void RevGraphView::setBasePath(const TQString&_path)
void RevGraphView::slotClientException(const TQString&what)
{
- KMessageBox::sorry(TQT_TQWIDGET(TDEApplication::activeModalWidget()),what,i18n("SVN Error"));
+ KMessageBox::sorry(TDEApplication::activeModalWidget(),what,i18n("SVN Error"));
}
#include "revgraphview.moc"