summaryrefslogtreecommitdiffstats
path: root/src/src/configure.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/src/configure.h')
-rw-r--r--src/src/configure.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/src/configure.h b/src/src/configure.h
index a0098f7..e35f100 100644
--- a/src/src/configure.h
+++ b/src/src/configure.h
@@ -23,20 +23,20 @@
#include "configurebase.h"
#include "interface.h"
-#include <qstring.h>
-#include <qmap.h>
-#include <qfont.h>
-#include <qcolor.h>
-#include <qpixmap.h>
-#include <qstringlist.h>
+#include <tqstring.h>
+#include <tqmap.h>
+#include <tqfont.h>
+#include <tqcolor.h>
+#include <tqpixmap.h>
+#include <tqstringlist.h>
static const int ICONSIZE = 22;
class KNetStats;
-class QListBoxItem;
+class TQListBoxItem;
-typedef QMap<QString, KNetStatsView::Options> OptionsMap;
+typedef TQMap<TQString, KNetStatsView::Options> OptionsMap;
/**
@@ -45,20 +45,21 @@ typedef QMap<QString, KNetStatsView::Options> OptionsMap;
class Configure : public ConfigureBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- Configure(KNetStats* parent, const InterfaceMap& ifs);
+ Configure(KNetStats* tqparent, const InterfaceMap& ifs);
const OptionsMap& currentConfig() const { return mConfig; }
bool canSaveConfig();
const OptionsMap& options() const { return mConfig; }
private:
- QString mCurrentItem;
+ TQString mCurrentItem;
OptionsMap mConfig;
protected slots:
- void changeInterface(QListBoxItem* item);
+ void changeInterface(TQListBoxItem* item);
void changeTheme(int theme);
- //void showInterfaceContextMenu(QListBoxItem* item, const QPoint& point);
+ //void showInterfaceContextMenu(TQListBoxItem* item, const TQPoint& point);
//void removeInterface();
};