diff options
Diffstat (limited to 'kbabel/datatools/setfuzzy/main.cpp')
-rw-r--r-- | kbabel/datatools/setfuzzy/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kbabel/datatools/setfuzzy/main.cpp b/kbabel/datatools/setfuzzy/main.cpp index 7bc0ed16..8ff83492 100644 --- a/kbabel/datatools/setfuzzy/main.cpp +++ b/kbabel/datatools/setfuzzy/main.cpp @@ -60,20 +60,20 @@ bool SetFuzzyTool::run( const TQString& command, void* data, const TQString& dat { kdDebug(KBABEL) << "Fuzzy Toggling Tool does only accept the command 'allfuzzy'" << endl; kdDebug(KBABEL) << " The commands " << command << " is not accepted" << endl; - return FALSE; + return false; } // Check wether we can accept the data if ( datatype != "Catalog" ) { kdDebug(KBABEL) << "Fuzzy Toggling Tool only accepts datatype Catalog" << endl; - return FALSE; + return false; } if ( mimetype != "application/x-kbabel-catalog" ) { kdDebug(KBABEL) << "Plural Forms Tool only accepts mimetype application/x-kbabel-catalog" << endl; - return FALSE; + return false; } if( command == "allfuzzy" ) @@ -92,7 +92,7 @@ bool SetFuzzyTool::run( const TQString& command, void* data, const TQString& dat catalog->applyEndCommand(0,Msgstr,0); } - return TRUE; + return true; } #include "main.moc" |