From 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 2 Mar 2012 02:11:59 -0600 Subject: Undo prior accidental commit --- src/canvas/qcanvas.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/canvas/qcanvas.cpp') diff --git a/src/canvas/qcanvas.cpp b/src/canvas/qcanvas.cpp index e70515a..401c5ba 100644 --- a/src/canvas/qcanvas.cpp +++ b/src/canvas/qcanvas.cpp @@ -3013,7 +3013,7 @@ QCanvasPixmapArray::QCanvasPixmapArray(QPtrList list, QPtrList img(new QCanvasPixmap*[list.count()]) { if (list.count() != hotspots.count()) { - tqWarning("QCanvasPixmapArray: lists have different lengths"); + qWarning("QCanvasPixmapArray: lists have different lengths"); reset(); img = 0; } else { @@ -3041,7 +3041,7 @@ QCanvasPixmapArray::QCanvasPixmapArray(QValueList list, QPointArray hot { bool have_hotspots = ( hotspots.size() != 0 ); if (have_hotspots && list.count() != hotspots.count()) { - tqWarning("QCanvasPixmapArray: lists have different lengths"); + qWarning("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 ) - tqDebug("A QCanvasRectangle lies somewhere at this point"); + qDebug("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) ) { - tqWarning( "QCanvasSpline::setControlPoints(): Number of points doesn't fit." ); + qWarning( "QCanvasSpline::setControlPoints(): Number of points doesn't fit." ); int numCurves = (ctrl.count() - (close ? 0 : 1 ))/ 3; ctrl.resize( numCurves*3 + ( close ? 0 : 1 ) ); } -- cgit v1.2.3