summaryrefslogtreecommitdiffstats
path: root/src/canvas/qcanvas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/canvas/qcanvas.cpp')
-rw-r--r--src/canvas/qcanvas.cpp8
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 ) );
}