summaryrefslogtreecommitdiffstats
path: root/ksquirrel/ksquirrelpart/sq_errorstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksquirrel/ksquirrelpart/sq_errorstring.h')
-rw-r--r--ksquirrel/ksquirrelpart/sq_errorstring.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ksquirrel/ksquirrelpart/sq_errorstring.h b/ksquirrel/ksquirrelpart/sq_errorstring.h
index b1c4838..469fe47 100644
--- a/ksquirrel/ksquirrelpart/sq_errorstring.h
+++ b/ksquirrel/ksquirrelpart/sq_errorstring.h
@@ -18,8 +18,8 @@
#ifndef SQ_ERRORSTRING_H
#define SQ_ERRORSTRING_H
-#include <qmap.h>
-#include <qobject.h>
+#include <tqmap.h>
+#include <tqobject.h>
#include <klocale.h>
@@ -30,26 +30,26 @@
* error code.
*/
-class SQ_ErrorString : public QObject
+class SQ_ErrorString : public TQObject
{
public:
- SQ_ErrorString(QObject *parent = 0);
+ SQ_ErrorString(TQObject *tqparent = 0);
~SQ_ErrorString();
/*
* Get string representation of error.
*/
- QString string(const int code);
+ TQString string(const int code);
/*
* string() + "\n"
*/
- QString stringSN(const int code);
+ TQString stringSN(const int code);
static SQ_ErrorString* instance() { return m_instance; }
private:
- QMap<int, QString> messages;
+ TQMap<int, TQString> messages;
static SQ_ErrorString *m_instance;
};