diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:22:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:22:57 -0600 |
commit | 9b9d4ea191b72a4742c67bbcdb12528dbe848dfd (patch) | |
tree | f85ada91374abeb209235c716912d15c9751ad06 /src/svnfrontend | |
parent | c1ece33d3c587246439e1392a25d19e0c7117fee (diff) | |
download | tdesvn-9b9d4ea191b72a4742c67bbcdb12528dbe848dfd.tar.gz tdesvn-9b9d4ea191b72a4742c67bbcdb12528dbe848dfd.zip |
Rename additional global TQt functions
Diffstat (limited to 'src/svnfrontend')
-rw-r--r-- | src/svnfrontend/graphtree/graphtreelabel.cpp | 8 | ||||
-rw-r--r-- | src/svnfrontend/graphtree/revgraphview.cpp | 8 | ||||
-rw-r--r-- | src/svnfrontend/propertiesdlg.cpp | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/src/svnfrontend/graphtree/graphtreelabel.cpp b/src/svnfrontend/graphtree/graphtreelabel.cpp index 56bfa04..4d29e6d 100644 --- a/src/svnfrontend/graphtree/graphtreelabel.cpp +++ b/src/svnfrontend/graphtree/graphtreelabel.cpp @@ -100,14 +100,14 @@ TQPointArray GraphEdge::areaPoints() const int maxX = minX, maxY = minY; int i; - if (0) qDebug("GraphEdge::areaPoints\n P 0: %d/%d", minX, minY); + if (0) tqDebug("GraphEdge::areaPoints\n P 0: %d/%d", minX, minY); int len = poly.count(); for (i=1;i<len;i++) { if (poly[i].x() < minX) minX = poly[i].x(); if (poly[i].y() < minY) minY = poly[i].y(); if (poly[i].x() > maxX) maxX = poly[i].x(); if (poly[i].y() > maxY) maxY = poly[i].y(); - if (0) qDebug(" P %d: %d/%d", i, poly[i].x(), poly[i].y()); + if (0) tqDebug(" P %d: %d/%d", i, poly[i].x(), poly[i].y()); } TQPointArray a = poly.copy(), b = poly.copy(); if (minX == maxX) { @@ -123,9 +123,9 @@ TQPointArray GraphEdge::areaPoints() const a[2 * len - 1 -i] = b[i]; if (0) { - qDebug(" Result:"); + tqDebug(" Result:"); for (i=0;i<2*len;i++) - qDebug(" P %d: %d/%d", i, a[i].x(), a[i].y()); + tqDebug(" P %d: %d/%d", i, a[i].x(), a[i].y()); } return a; 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) { diff --git a/src/svnfrontend/propertiesdlg.cpp b/src/svnfrontend/propertiesdlg.cpp index ec1f24d..cd5281b 100644 --- a/src/svnfrontend/propertiesdlg.cpp +++ b/src/svnfrontend/propertiesdlg.cpp @@ -125,7 +125,7 @@ void PropertiesDlg::languageChange() void PropertiesDlg::slotHelp() { - qWarning( "PropertiesDlg::slotHelp(): Not implemented yet" ); + tqWarning( "PropertiesDlg::slotHelp(): Not implemented yet" ); } void PropertiesDlg::slotSelectionChanged(TQListViewItem*item) |