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/punctuation/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kbabel/datatools/punctuation/main.cpp') diff --git a/kbabel/datatools/punctuation/main.cpp b/kbabel/datatools/punctuation/main.cpp index 6d779518..7f86e0ce 100644 --- a/kbabel/datatools/punctuation/main.cpp +++ b/kbabel/datatools/punctuation/main.cpp @@ -64,20 +64,20 @@ bool PunctuationTool::run( const TQString& command, void* data, const TQString& { kdDebug(KBABEL) << "Punctuation Tool does only accept the command 'validate'" << 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) << "Punctuation Tool only accepts datatype CatalogItem" << endl; - return FALSE; + return false; } if ( mimetype != "application/x-kbabel-catalogitem" ) { kdDebug(KBABEL) << "Punctuation Tool only accepts mimetype application/x-kbabel-catalogitem" << endl; - return FALSE; + return false; } if( command == "validate" ) @@ -151,7 +151,7 @@ bool PunctuationTool::run( const TQString& command, void* data, const TQString& return !hasError; } - return FALSE; + return false; } #include "main.moc" -- cgit v1.2.3