diff options
Diffstat (limited to 'kimgio/hdr.cpp')
-rw-r--r-- | kimgio/hdr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kimgio/hdr.cpp b/kimgio/hdr.cpp index 5f1832f02..0749ce751 100644 --- a/kimgio/hdr.cpp +++ b/kimgio/hdr.cpp @@ -69,7 +69,7 @@ namespace { // Private. } - static void RGBE_To_QRgbLine(uchar * image, QRgb * scanline, int width) + static void RGBE_To_QRgbLine(uchar * image, TQRgb * scanline, int width) { for (int j = 0; j < width; j++) { @@ -108,7 +108,7 @@ namespace { // Private. for (int cline = 0; cline < height; cline++) { - QRgb * scanline = (QRgb *) img.scanLine( cline ); + TQRgb * scanline = (TQRgb *) img.scanLine( cline ); // determine scanline type if ((width < MINELEN) || (MAXELEN < width)) |