diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-30 19:26:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-02 16:50:04 +0900 |
commit | 6161ba3a08e4b534fc6086213de12d75859b5e48 (patch) | |
tree | 7d7184199cc758422873b82ae933b985e5fff680 /getimages/getimages.cpp | |
parent | 404611daf471a18fa2095c2d550ce80830f606f6 (diff) | |
download | tde-style-domino-r14.1.x.tar.gz tde-style-domino-r14.1.x.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 6092f1e1125fae6cd7289938854ce3e0ecc31cdd)
Diffstat (limited to 'getimages/getimages.cpp')
-rw-r--r-- | getimages/getimages.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/getimages/getimages.cpp b/getimages/getimages.cpp index e87dae4..e6b6cc3 100644 --- a/getimages/getimages.cpp +++ b/getimages/getimages.cpp @@ -41,7 +41,7 @@ int main ( int /*argc*/, char **/*argv*/ ) TQImage::BigEndian ); if ( embed_image_vec[i].alpha ) - img->setAlphaBuffer( TRUE ); + img->setAlphaBuffer( true ); img->save(TQString("style_pixmaps/") + embed_image_vec[i].name + TQString(".png"), "PNG"); delete img; @@ -57,7 +57,7 @@ int main ( int /*argc*/, char **/*argv*/ ) TQImage::BigEndian ); if ( dembed::embed_image_vec[i].alpha ) - img->setAlphaBuffer( TRUE ); + img->setAlphaBuffer( true ); img->save(TQString("client_pixmaps/") + dembed::embed_image_vec[i].name + TQString(".png"), "PNG"); delete img; |