summaryrefslogtreecommitdiffstats
path: root/src/kernel/qpixmap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qpixmap.cpp')
-rw-r--r--src/kernel/qpixmap.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kernel/qpixmap.cpp b/src/kernel/qpixmap.cpp
index ecc9b46..d388137 100644
--- a/src/kernel/qpixmap.cpp
+++ b/src/kernel/qpixmap.cpp
@@ -405,7 +405,7 @@ QPixmap QPixmap::fromMimeSource( const QString &abs_name )
return QPixmap( abs_name );
#if defined(QT_CHECK_STATE)
if ( !abs_name.isEmpty() )
- qWarning( "QPixmap::fromMimeSource: Cannot find pixmap \"%s\" in the mime source factory",
+ tqWarning( "QPixmap::fromMimeSource: Cannot find pixmap \"%s\" in the mime source factory",
abs_name.latin1() );
#endif
return QPixmap();
@@ -459,7 +459,7 @@ QPixmap &QPixmap::operator=( const QPixmap &pixmap )
{
if ( paintingActive() ) {
#if defined(QT_CHECK_STATE)
- qWarning("QPixmap::operator=: Cannot assign to pixmap during painting");
+ tqWarning("QPixmap::operator=: Cannot assign to pixmap during painting");
#endif
return *this;
}
@@ -673,7 +673,7 @@ void QPixmap::resize( int w, int h )
} else
#elif defined(Q_WS_X11) && !defined(QT_NO_XFTFREETYPE)
if (data->alphapm)
- qWarning("QPixmap::resize: TODO: resize alpha data");
+ tqWarning("QPixmap::resize: TODO: resize alpha data");
else
#endif // Q_WS_X11
if ( data->mask ) { // resize mask as well
@@ -746,7 +746,7 @@ void QPixmap::setMask( const QBitmap &newmask )
if ( newmask.width() != width() || newmask.height() != height() ) {
#if defined(QT_CHECK_RANGE)
- qWarning( "QPixmap::setMask: The pixmap and the mask must have "
+ tqWarning( "QPixmap::setMask: The pixmap and the mask must have "
"the same size" );
#endif
return;
@@ -1054,7 +1054,7 @@ bool QPixmap::doImageIO( QImageIO* io, int quality ) const
io->setImage( convertToImage() );
#if defined(QT_CHECK_RANGE)
if ( quality > 100 || quality < -1 )
- qWarning( "QPixmap::save: quality out of range [-1,100]" );
+ tqWarning( "QPixmap::save: quality out of range [-1,100]" );
#endif
if ( quality >= 0 )
io->setQuality( QMIN(quality,100) );