diff options
Diffstat (limited to 'kimgio/pcx.cpp')
-rw-r--r-- | kimgio/pcx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kimgio/pcx.cpp b/kimgio/pcx.cpp index 7a5c843fa..ea02b67a9 100644 --- a/kimgio/pcx.cpp +++ b/kimgio/pcx.cpp @@ -467,7 +467,7 @@ static void writeImage24( TQImage &img, TQDataStream &s, PCXHEADER &header ) for ( unsigned int x=0; x<header.width(); ++x ) { - QRgb rgb = *p++; + TQRgb rgb = *p++; r_buf[ x ] = tqRed( rgb ); g_buf[ x ] = tqGreen( rgb ); b_buf[ x ] = tqBlue( rgb ); |