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 16:46:41 +0900 |
commit | 0821b7f9badc0bb1bf74d8b9040bce6f47997569 (patch) | |
tree | b8f15cd99f25ad3a97d2eb83ba03d914e6567534 /kbabel/datatools/pluralforms/main.cpp | |
parent | 7fe83e6a30ffeb074d4e16a507d27439a733f4b3 (diff) | |
download | tdesdk-r14.1.4.tar.gz tdesdk-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit fb63dae0e786f0bcf421bdff1d0bef70ba587f8b)
Diffstat (limited to 'kbabel/datatools/pluralforms/main.cpp')
-rw-r--r-- | kbabel/datatools/pluralforms/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kbabel/datatools/pluralforms/main.cpp b/kbabel/datatools/pluralforms/main.cpp index 693a843b..65057631 100644 --- a/kbabel/datatools/pluralforms/main.cpp +++ b/kbabel/datatools/pluralforms/main.cpp @@ -65,20 +65,20 @@ bool PluralsTool::run( const TQString& command, void* data, const TQString& data { kdDebug(KBABEL) << "Plural Forms 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) << "Plural Forms Tool only accepts datatype CatalogItem" << endl; - return FALSE; + return false; } if ( mimetype != "application/x-kbabel-catalogitem" ) { kdDebug(KBABEL) << "Plural Forms Tool only accepts mimetype application/x-kbabel-catalogitem" << endl; - return FALSE; + return false; } if( command == "validate" ) @@ -123,7 +123,7 @@ bool PluralsTool::run( const TQString& command, void* data, const TQString& data return !hasError; } - return FALSE; + return false; } #include "main.moc" |