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