diff options
Diffstat (limited to 'kbabel/datatools/context/main.cpp')
-rw-r--r-- | kbabel/datatools/context/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kbabel/datatools/context/main.cpp b/kbabel/datatools/context/main.cpp index 0fb989d2..109b1084 100644 --- a/kbabel/datatools/context/main.cpp +++ b/kbabel/datatools/context/main.cpp @@ -64,20 +64,20 @@ bool ContextTool::run( const TQString& command, void* data, const TQString& data { kdDebug(KBABEL) << "Context 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) << "Context Tool only accepts datatype CatalogItem" << endl; - return FALSE; + return false; } if ( mimetype != "application/x-kbabel-catalogitem" ) { kdDebug(KBABEL) << "Context Tool only accepts mimetype application/x-kbabel-catalogitem" << endl; - return FALSE; + return false; } if( command == "validate" ) @@ -109,7 +109,7 @@ bool ContextTool::run( const TQString& command, void* data, const TQString& data return !hasError; } - return FALSE; + return false; } #include "main.moc" |