summaryrefslogtreecommitdiffstats
path: root/libksirtet/lib/miscui.h
diff options
context:
space:
mode:
Diffstat (limited to 'libksirtet/lib/miscui.h')
-rw-r--r--libksirtet/lib/miscui.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libksirtet/lib/miscui.h b/libksirtet/lib/miscui.h
index 7de5dfbc..fb40e0ec 100644
--- a/libksirtet/lib/miscui.h
+++ b/libksirtet/lib/miscui.h
@@ -1,8 +1,8 @@
#ifndef MISCUI_H
#define MISCUI_H
-#include <qcombobox.h>
-#include <qcheckbox.h>
+#include <tqcombobox.h>
+#include <tqcheckbox.h>
//-----------------------------------------------------------------------------
@@ -11,7 +11,7 @@ class MeetingCheckBox : public QWidget
Q_OBJECT
public:
enum Type { Ready, NotReady, Excluded };
- MeetingCheckBox(Type, bool owner, bool server, QWidget *parent);
+ MeetingCheckBox(Type, bool owner, bool server, TQWidget *parent);
void setType(Type);
Type type() const;
@@ -23,7 +23,7 @@ class MeetingCheckBox : public QWidget
void changedSlot();
private:
- QCheckBox *_ready, *_excluded;
+ TQCheckBox *_ready, *_excluded;
};
//-----------------------------------------------------------------------------
@@ -32,7 +32,7 @@ class PlayerComboBox : public QComboBox
Q_OBJECT
public:
enum Type { Human = 0, AI, None };
- PlayerComboBox(Type, bool canBeNone, bool acceptAI, QWidget *parent);
+ PlayerComboBox(Type, bool canBeNone, bool acceptAI, TQWidget *parent);
Type type() const { return (Type)currentItem(); }