summaryrefslogtreecommitdiffstats
path: root/src/src/interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/src/interface.h')
-rw-r--r--src/src/interface.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/src/interface.h b/src/src/interface.h
index 71b29f8..4ad1323 100644
--- a/src/src/interface.h
+++ b/src/src/interface.h
@@ -13,12 +13,12 @@
#ifndef INTERFACE_H
#define INTERFACE_H
-#include <qstring.h>
+#include <tqstring.h>
#include "knetstatsview.h"
class KNetStats;
class Interface {
- QString mName;
+ TQString mName;
KNetStatsView* mView;
KNetStats* mParent;
@@ -26,10 +26,10 @@ class Interface {
public:
/**
* Constructs a new interface.
- * \param parent parent of the view of this interface.
- * \param name name of this interface (not the QObject name!!)
+ * \param tqparent tqparent of the view of this interface.
+ * \param name name of this interface (not the TQObject name!!)
*/
- Interface(KNetStats* parent, const QString& name);
+ Interface(KNetStats* tqparent, const TQString& name);
/**
* Set this interface visible to the user via a KNetStatsView.
@@ -39,13 +39,13 @@ public:
void update();
- void say(const QString& message);
+ void say(const TQString& message);
KNetStatsView::Options options();
};
-#include <qmap.h>
-typedef QMap<QString, Interface*> InterfaceMap;
+#include <tqmap.h>
+typedef TQMap<TQString, Interface*> InterfaceMap;
#endif