diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-18 16:33:02 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-19 23:48:47 +0900 |
commit | d2998fbc2b984de32712fde6280eff2643fb14ff (patch) | |
tree | f776ef8e45b106f8ab3a2c9ef8d00a8dbcc83fb7 | |
parent | 36bde20b9b47da4cd78cfda70b6e6b0c7385b7cf (diff) | |
download | gwenview-d2998fbc2b984de32712fde6280eff2643fb14ff.tar.gz gwenview-d2998fbc2b984de32712fde6280eff2643fb14ff.zip |
Replace various strings '#define'd in tqtinterface
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 9819dffc57bc205b261e702018579949c5c2f73b)
-rw-r--r-- | src/imageutils/croppedqimage.cpp | 2 | ||||
-rw-r--r-- | src/imageutils/imageutils.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/imageutils/croppedqimage.cpp b/src/imageutils/croppedqimage.cpp index 7f47366..8133074 100644 --- a/src/imageutils/croppedqimage.cpp +++ b/src/imageutils/croppedqimage.cpp @@ -39,7 +39,7 @@ CroppedTQImage::CroppedTQImage( const TQImage& im, const TQRect& rect ) { if( im.isNull()) return; - memcpy( tqcolorTable(), im.tqcolorTable(), im.numColors() * sizeof( TQRgb )); + memcpy( colorTable(), im.colorTable(), im.numColors() * sizeof( TQRgb )); setAlphaBuffer( im.hasAlphaBuffer()); setDotsPerMeterX( im.dotsPerMeterX()); setDotsPerMeterY( im.dotsPerMeterY()); diff --git a/src/imageutils/imageutils.cpp b/src/imageutils/imageutils.cpp index a50dbed..9da3680 100644 --- a/src/imageutils/imageutils.cpp +++ b/src/imageutils/imageutils.cpp @@ -169,7 +169,7 @@ TQImage changeImage( const TQImage& image, int value ) } else { - TQRgb* colors = im.tqcolorTable(); + TQRgb* colors = im.colorTable(); for( int i = 0; i < im.numColors(); ++i ) |