summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/graphtree/revgraphview.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit4be907152dfb5461311d9db1d63120c28a0bad0a (patch)
tree6ee40d7c10190ef860a9be24d2938bef888bb262 /src/svnfrontend/graphtree/revgraphview.cpp
parent421a6fdcbe08c6297214e7397ab98e535148686f (diff)
downloadtdesvn-4be907152dfb5461311d9db1d63120c28a0bad0a.tar.gz
tdesvn-4be907152dfb5461311d9db1d63120c28a0bad0a.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/svnfrontend/graphtree/revgraphview.cpp')
-rw-r--r--src/svnfrontend/graphtree/revgraphview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svnfrontend/graphtree/revgraphview.cpp b/src/svnfrontend/graphtree/revgraphview.cpp
index afb9d3a..8d2c126 100644
--- a/src/svnfrontend/graphtree/revgraphview.cpp
+++ b/src/svnfrontend/graphtree/revgraphview.cpp
@@ -58,8 +58,8 @@ protected:
void GraphViewTip::maybeTip( const TQPoint & pos)
{
- if (!tqparentWidget()->inherits( "RevGraphView" )) return;
- RevGraphView* cgv = (RevGraphView*)tqparentWidget();
+ if (!parentWidget()->inherits( "RevGraphView" )) return;
+ RevGraphView* cgv = (RevGraphView*)parentWidget();
TQPoint cPos = cgv->viewportToContents(pos);
TQCanvasItemList l = cgv->canvas()->collisions(cPos);
if (l.count() == 0) return;
@@ -326,7 +326,7 @@ void RevGraphView::dotExit(KProcess*p)
}
}
if (!m_Canvas) {
- TQString s = i18n("Error running the graph tqlayouting tool.\n");
+ TQString s = i18n("Error running the graph layouting tool.\n");
s += i18n("Please check that 'dot' is installed (package GraphViz).");
showText(s);
} else {