From fb63dae0e786f0bcf421bdff1d0bef70ba587f8b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 8 Apr 2025 12:10:45 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- kbabel/datatools/arguments/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kbabel/datatools/arguments/main.cpp') diff --git a/kbabel/datatools/arguments/main.cpp b/kbabel/datatools/arguments/main.cpp index b6c3fa5a..66896fbc 100644 --- a/kbabel/datatools/arguments/main.cpp +++ b/kbabel/datatools/arguments/main.cpp @@ -63,20 +63,20 @@ bool ArgumentTool::run( const TQString& command, void* data, const TQString& dat { kdDebug(KBABEL) << "Argument Tool does only accept the command 'validate' and 'shortcut'" << endl; kdDebug(KBABEL) << " The commands " << command << " is not accepted" << endl; - return FALSE; + return false; } // Check wether we can accept the data if ( datatype != "CatalogItem" ) { kdDebug(KBABEL) << "Argument Tool only accepts datatype CatalogItem" << endl; - return FALSE; + return false; } if ( mimetype != "application/x-kbabel-catalogitem" ) { kdDebug(KBABEL) << "Argument Tool only accepts mimetype application/x-kbabel-catalogitem" << endl; - return FALSE; + return false; } if( command == "validate" ) @@ -271,7 +271,7 @@ bool ArgumentTool::run( const TQString& command, void* data, const TQString& dat return !hasError; } - return FALSE; + return false; } #include "main.moc" -- cgit v1.2.3