From 3a477fb70884668d163f6631a73c8ab894928bcc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 8 Dec 2025 15:17:51 +0900 Subject: Replace TRUE/FALSE with boolean values true/false - part 8 Signed-off-by: Michele Calgaro (cherry picked from commit 7d612f7c91d55501276a385a30dbadb121e7bd9f) --- src/kernel/ntqimage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernel/ntqimage.h') diff --git a/src/kernel/ntqimage.h b/src/kernel/ntqimage.h index 32f20b23f..34e9fd9a1 100644 --- a/src/kernel/ntqimage.h +++ b/src/kernel/ntqimage.h @@ -140,7 +140,7 @@ public: void reset(); void fill( uint pixel ); - void invertPixels( bool invertAlpha = TRUE ); + void invertPixels( bool invertAlpha = true ); TQImage convertDepth( int ) const; #ifndef TQT_NO_IMAGE_TRUECOLOR @@ -170,7 +170,7 @@ public: TQImage createAlphaMask( int conversion_flags=0 ) const; #endif #ifndef TQT_NO_IMAGE_HEURISTIC_MASK - TQImage createHeuristicMask( bool clipTight=TRUE ) const; + TQImage createHeuristicMask( bool clipTight=true ) const; #endif #ifndef TQT_NO_IMAGE_MIRROR TQImage mirror() const; -- cgit v1.2.3