|
|
|
@ -671,7 +671,7 @@ KDStream& KDStream::operator<<( const TQStrList& list )
|
|
|
|
|
|
|
|
|
|
KDStream& KDStream::operator<<( const TQPixmap& pixmap )
|
|
|
|
|
{
|
|
|
|
|
_output += TQString("TQPixmap[null=%1,width=%2,heigth=%3,depth=%4,hasMask=%5,hasAlpha=%6]")
|
|
|
|
|
_output += TQString("TQPixmap[null=%1,width=%2,height=%3,depth=%4,hasMask=%5,hasAlpha=%6]")
|
|
|
|
|
.arg(pixmap.isNull()).arg(pixmap.width()).arg(pixmap.height())
|
|
|
|
|
.arg(pixmap.depth()).arg(pixmap.mask() != 0).arg(pixmap.hasAlpha() );
|
|
|
|
|
return *this;
|
|
|
|
@ -680,7 +680,7 @@ KDStream& KDStream::operator<<( const TQPixmap& pixmap )
|
|
|
|
|
|
|
|
|
|
KDStream& KDStream::operator<<( const TQImage& pixmap )
|
|
|
|
|
{
|
|
|
|
|
_output += TQString("TQImage[null=%1,width=%2,heigth=%3,depth=%4,hasAlpha=%5]")
|
|
|
|
|
_output += TQString("TQImage[null=%1,width=%2,height=%3,depth=%4,hasAlpha=%5]")
|
|
|
|
|
.arg(pixmap.isNull()).arg(pixmap.width()).arg(pixmap.height())
|
|
|
|
|
.arg(pixmap.depth()).arg(pixmap.hasAlphaBuffer() );
|
|
|
|
|
return *this;
|
|
|
|
|