diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /src/canvas/qcanvas.cpp | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
Diffstat (limited to 'src/canvas/qcanvas.cpp')
-rw-r--r-- | src/canvas/qcanvas.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/canvas/qcanvas.cpp b/src/canvas/qcanvas.cpp index 401c5ba..e70515a 100644 --- a/src/canvas/qcanvas.cpp +++ b/src/canvas/qcanvas.cpp @@ -3013,7 +3013,7 @@ QCanvasPixmapArray::QCanvasPixmapArray(QPtrList<QPixmap> list, QPtrList<QPoint> img(new QCanvasPixmap*[list.count()]) { if (list.count() != hotspots.count()) { - qWarning("QCanvasPixmapArray: lists have different lengths"); + tqWarning("QCanvasPixmapArray: lists have different lengths"); reset(); img = 0; } else { @@ -3041,7 +3041,7 @@ QCanvasPixmapArray::QCanvasPixmapArray(QValueList<QPixmap> list, QPointArray hot { bool have_hotspots = ( hotspots.size() != 0 ); if (have_hotspots && list.count() != hotspots.count()) { - qWarning("QCanvasPixmapArray: lists have different lengths"); + tqWarning("QCanvasPixmapArray: lists have different lengths"); reset(); img = 0; } else { @@ -3480,7 +3480,7 @@ void QCanvasSprite::draw(QPainter& painter) QCanvasItemList l = canvas()->collisions(e->pos()); for (QCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it) { if ( (*it)->rtti() == QCanvasRectangle::RTTI ) - qDebug("A QCanvasRectangle lies somewhere at this point"); + tqDebug("A QCanvasRectangle lies somewhere at this point"); } } \endcode @@ -4295,7 +4295,7 @@ QCanvasSpline::~QCanvasSpline() void QCanvasSpline::setControlPoints(QPointArray ctrl, bool close) { if ( (int)ctrl.count() % 3 != (close ? 0 : 1) ) { - qWarning( "QCanvasSpline::setControlPoints(): Number of points doesn't fit." ); + tqWarning( "QCanvasSpline::setControlPoints(): Number of points doesn't fit." ); int numCurves = (ctrl.count() - (close ? 0 : 1 ))/ 3; ctrl.resize( numCurves*3 + ( close ? 0 : 1 ) ); } |