summaryrefslogtreecommitdiffstats
path: root/getimages/getimages.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-03-30 19:26:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-02 16:50:04 +0900
commit6161ba3a08e4b534fc6086213de12d75859b5e48 (patch)
tree7d7184199cc758422873b82ae933b985e5fff680 /getimages/getimages.cpp
parent404611daf471a18fa2095c2d550ce80830f606f6 (diff)
downloadtde-style-domino-r14.1.x.tar.gz
tde-style-domino-r14.1.x.zip
Replace TRUE/FALSE with boolean values true/falser14.1.4r14.1.x
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.cpp4
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;