diff options
author | Timothy Pearson <[email protected]> | 2012-03-01 13:22:57 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-01 13:22:57 -0600 |
commit | 9b9d4ea191b72a4742c67bbcdb12528dbe848dfd (patch) | |
tree | f85ada91374abeb209235c716912d15c9751ad06 /src/svnfrontend/graphtree/revgraphview.cpp | |
parent | c1ece33d3c587246439e1392a25d19e0c7117fee (diff) | |
download | tdesvn-9b9d4ea191b72a4742c67bbcdb12528dbe848dfd.tar.gz tdesvn-9b9d4ea191b72a4742c67bbcdb12528dbe848dfd.zip |
Rename additional global TQt functions
Diffstat (limited to 'src/svnfrontend/graphtree/revgraphview.cpp')
-rw-r--r-- | src/svnfrontend/graphtree/revgraphview.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/svnfrontend/graphtree/revgraphview.cpp b/src/svnfrontend/graphtree/revgraphview.cpp index 5b0064a..3099689 100644 --- a/src/svnfrontend/graphtree/revgraphview.cpp +++ b/src/svnfrontend/graphtree/revgraphview.cpp @@ -253,12 +253,12 @@ void RevGraphView::dotExit(KProcess*p) int xx = (int)(scaleX * x + _xMargin); int yy = (int)(scaleY * (dotHeight - y) + _yMargin); - if (0) qDebug(" P %d: ( %f / %f ) => ( %d / %d)", + if (0) tqDebug(" P %d: ( %f / %f ) => ( %d / %d)", i, x, y, xx, yy); pa.setPoint(i, xx, yy); } if (i < points) { - qDebug("CallGraphView: Can't read %d spline points (%d)", + tqDebug("CallGraphView: Can't read %d spline points (%d)", points, lineno); continue; } @@ -593,7 +593,7 @@ void RevGraphView::updateSizes(TQSize s) if (zoom != _cvZoom) { _cvZoom = zoom; - if (0) qDebug("Canvas Size: %dx%d, Visible: %dx%d, Zoom: %f", + if (0) tqDebug("Canvas Size: %dx%d, Visible: %dx%d, Zoom: %f", m_Canvas->width(), m_Canvas->height(), cWidth, cHeight, zoom); @@ -680,7 +680,7 @@ void RevGraphView::contentsMovingSlot(int x,int y) { TQRect z(int(x * _cvZoom), int(y * _cvZoom), int(visibleWidth() * _cvZoom)-1, int(visibleHeight() * _cvZoom)-1); - if (0) qDebug("moving: (%d,%d) => (%d/%d - %dx%d)", + if (0) tqDebug("moving: (%d,%d) => (%d/%d - %dx%d)", x, y, z.x(), z.y(), z.width(), z.height()); m_CompleteView->setZoomRect(z); if (!_noUpdateZoomerPos) { |