diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-08 12:10:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-08 12:10:47 +0900 |
commit | fb63dae0e786f0bcf421bdff1d0bef70ba587f8b (patch) | |
tree | 8a24fafe2ac78efbd8c9d06fa19bd6a111fb7aba /kbabel/datatools/xml/main.cpp | |
parent | ecfbbada6fb7d8fc15bef7ba124f592dd39fda90 (diff) | |
download | tdesdk-fb63dae0e786f0bcf421bdff1d0bef70ba587f8b.tar.gz tdesdk-fb63dae0e786f0bcf421bdff1d0bef70ba587f8b.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbabel/datatools/xml/main.cpp')
-rw-r--r-- | kbabel/datatools/xml/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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) |