diff options
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 7b337fb49..a8b348b94 100644 --- a/src/canvas/qcanvas.cpp +++ b/src/canvas/qcanvas.cpp @@ -3013,7 +3013,7 @@ TQCanvasPixmapArray::TQCanvasPixmapArray(TQPtrList<TQPixmap> list, TQPtrList<TQP img(new TQCanvasPixmap*[list.count()]) { if (list.count() != hotspots.count()) { - qWarning("TQCanvasPixmapArray: lists have different lengths"); + tqWarning("TQCanvasPixmapArray: lists have different lengths"); reset(); img = 0; } else { @@ -3041,7 +3041,7 @@ TQCanvasPixmapArray::TQCanvasPixmapArray(TQValueList<TQPixmap> list, TQPointArra { bool have_hotspots = ( hotspots.size() != 0 ); if (have_hotspots && list.count() != hotspots.count()) { - qWarning("TQCanvasPixmapArray: lists have different lengths"); + tqWarning("TQCanvasPixmapArray: lists have different lengths"); reset(); img = 0; } else { @@ -3480,7 +3480,7 @@ void TQCanvasSprite::draw(TQPainter& painter) TQCanvasItemList l = canvas()->collisions(e->pos()); for (TQCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it) { if ( (*it)->rtti() == TQCanvasRectangle::RTTI ) - qDebug("A TQCanvasRectangle lies somewhere at this point"); + tqDebug("A TQCanvasRectangle lies somewhere at this point"); } } \endcode @@ -4295,7 +4295,7 @@ TQCanvasSpline::~TQCanvasSpline() void TQCanvasSpline::setControlPoints(TQPointArray ctrl, bool close) { if ( (int)ctrl.count() % 3 != (close ? 0 : 1) ) { - qWarning( "TQCanvasSpline::setControlPoints(): Number of points doesn't fit." ); + tqWarning( "TQCanvasSpline::setControlPoints(): Number of points doesn't fit." ); int numCurves = (ctrl.count() - (close ? 0 : 1 ))/ 3; ctrl.resize( numCurves*3 + ( close ? 0 : 1 ) ); } |