summaryrefslogtreecommitdiffstats
path: root/tools/thesaurus
diff options
context:
space:
mode:
Diffstat (limited to 'tools/thesaurus')
-rw-r--r--tools/thesaurus/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/thesaurus/main.cpp b/tools/thesaurus/main.cpp
index 622314c5b..73de57eed 100644
--- a/tools/thesaurus/main.cpp
+++ b/tools/thesaurus/main.cpp
@@ -238,11 +238,11 @@ bool Thesaurus::run(const TQString& command, void* data, const TQString& datatyp
// Check whether we can accept the data
if ( datatype != "TQString" ) {
kdDebug(31000) << "Thesaurus only accepts datatype TQString" << endl;
- return FALSE;
+ return false;
}
if ( mimetype != "text/plain" ) {
kdDebug(31000) << "Thesaurus only accepts mimetype text/plain" << endl;
- return FALSE;
+ return false;
}
if ( command == "thesaurus" ) {
@@ -260,7 +260,7 @@ bool Thesaurus::run(const TQString& command, void* data, const TQString& datatyp
} else {
kdDebug(31000) << "Thesaurus does only accept the command 'thesaurus' or 'thesaurus_standalone'" << endl;
kdDebug(31000) << "The command " << command << " is not accepted" << endl;
- return FALSE;
+ return false;
}
// Get data and clean it up:
@@ -284,7 +284,7 @@ bool Thesaurus::run(const TQString& command, void* data, const TQString& datatyp
*((TQString*)data) = m_replace->text();
}
- return TRUE;
+ return true;
}