From 7d612f7c91d55501276a385a30dbadb121e7bd9f 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 --- src/kernel/tqimageformatplugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernel/tqimageformatplugin.cpp') diff --git a/src/kernel/tqimageformatplugin.cpp b/src/kernel/tqimageformatplugin.cpp index ad9057d2c..c7da8581d 100644 --- a/src/kernel/tqimageformatplugin.cpp +++ b/src/kernel/tqimageformatplugin.cpp @@ -168,7 +168,7 @@ bool TQImageFormatPlugin::loadImage( const TQString &format, const TQString &fil Q_UNUSED( format ) Q_UNUSED( filename ) Q_UNUSED( image ) - return FALSE; + return false; } /*! \internal @@ -178,7 +178,7 @@ bool TQImageFormatPlugin::saveImage( const TQString &format, const TQString &fil Q_UNUSED( format ) Q_UNUSED( filename ) Q_UNUSED( image ) - return FALSE; + return false; } #endif // TQT_NO_IMAGEFORMATPLUGIN -- cgit v1.2.3