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/xml/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kbabel/datatools/xml/main.cpp') diff --git a/kbabel/datatools/xml/main.cpp b/kbabel/datatools/xml/main.cpp index 59342c0d..07b65c3b 100644 --- a/kbabel/datatools/xml/main.cpp +++ b/kbabel/datatools/xml/main.cpp @@ -66,20 +66,20 @@ bool XMLTool::run( const TQString& command, void* data, const TQString& datatype { kdDebug(KBABEL) << "XML 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) << "XML Tool only accepts datatype CatalogItem" << endl; - return FALSE; + return false; } if ( mimetype != "application/x-kbabel-catalogitem" ) { kdDebug(KBABEL) << "XML Tool only accepts mimetype application/x-kbabel-catalogitem" << endl; - return FALSE; + return false; } if( command == "validate" ) @@ -168,7 +168,7 @@ bool XMLTool::run( const TQString& command, void* data, const TQString& datatype return !hasError; } - return FALSE; + return false; } bool XMLTool::isFullyCompliant( const TQString& text) -- cgit v1.2.3