summaryrefslogtreecommitdiffstats
path: root/src/kernel/qpixmap.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-02-28 22:31:39 -0600
committerTimothy Pearson <[email protected]>2012-02-28 22:31:39 -0600
commit41bb408dde90e755b07cd2ab8a9bdec7548c84b0 (patch)
tree6d4d5407c000add30aa78630e009c0e5d633e440 /src/kernel/qpixmap.cpp
parent1740cd279522c060e738bbbffacab83355d2b794 (diff)
downloadtqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.tar.gz
tqt3-41bb408dde90e755b07cd2ab8a9bdec7548c84b0.zip
Automated conversion from qt3
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 c03ac42f6..95fbed5ab 100644
--- a/src/kernel/qpixmap.cpp
+++ b/src/kernel/qpixmap.cpp
@@ -405,7 +405,7 @@ TQPixmap TQPixmap::fromMimeSource( const TQString &abs_name )
return TQPixmap( abs_name );
#if defined(QT_CHECK_STATE)
if ( !abs_name.isEmpty() )
- qWarning( "TQPixmap::fromMimeSource: Cannot find pixmap \"%s\" in the mime source factory",
+ tqWarning( "TQPixmap::fromMimeSource: Cannot find pixmap \"%s\" in the mime source factory",
abs_name.latin1() );
#endif
return TQPixmap();
@@ -459,7 +459,7 @@ TQPixmap &TQPixmap::operator=( const TQPixmap &pixmap )
{
if ( paintingActive() ) {
#if defined(QT_CHECK_STATE)
- qWarning("TQPixmap::operator=: Cannot assign to pixmap during painting");
+ tqWarning("TQPixmap::operator=: Cannot assign to pixmap during painting");
#endif
return *this;
}
@@ -673,7 +673,7 @@ void TQPixmap::resize( int w, int h )
} else
#elif defined(Q_WS_X11) && !defined(QT_NO_XFTFREETYPE)
if (data->alphapm)
- qWarning("TQPixmap::resize: TODO: resize alpha data");
+ tqWarning("TQPixmap::resize: TODO: resize alpha data");
else
#endif // Q_WS_X11
if ( data->mask ) { // resize mask as well
@@ -746,7 +746,7 @@ void TQPixmap::setMask( const TQBitmap &newmask )
if ( newmask.width() != width() || newmask.height() != height() ) {
#if defined(QT_CHECK_RANGE)
- qWarning( "TQPixmap::setMask: The pixmap and the mask must have "
+ tqWarning( "TQPixmap::setMask: The pixmap and the mask must have "
"the same size" );
#endif
return;
@@ -1054,7 +1054,7 @@ bool TQPixmap::doImageIO( TQImageIO* io, int quality ) const
io->setImage( convertToImage() );
#if defined(QT_CHECK_RANGE)
if ( quality > 100 || quality < -1 )
- qWarning( "TQPixmap::save: quality out of range [-1,100]" );
+ tqWarning( "TQPixmap::save: quality out of range [-1,100]" );
#endif
if ( quality >= 0 )
io->setQuality( TQMIN(quality,100) );