summaryrefslogtreecommitdiffstats
path: root/parts/doxygen/messages.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/doxygen/messages.cpp')
-rw-r--r--parts/doxygen/messages.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/parts/doxygen/messages.cpp b/parts/doxygen/messages.cpp
index 050e1ba6..8819b109 100644
--- a/parts/doxygen/messages.cpp
+++ b/parts/doxygen/messages.cpp
@@ -1,23 +1,23 @@
-#include <qmap.h>
+#include <tqmap.h>
#include <kdebug.h>
#include <klocale.h>
-static QMap<QCString,QString> sMessages;
+static TQMap<TQCString,TQString> sMessages;
// Note: this function seems to be completely unnecessary, but messages.insert
// is a template function, so doing the template expansion just once reduced
// the compile time of this trivial file from >5m to <30s on my machine. mhk.
-static void addMessage(const QCString key, const QString &message)
+static void addMessage(const TQCString key, const TQString &message)
{
sMessages.insert(key, message);
}
-QString message(const QCString &key)
+TQString message(const TQCString &key)
{
static bool initialized = false;