summaryrefslogtreecommitdiffstats
path: root/knights/io_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'knights/io_base.h')
-rw-r--r--knights/io_base.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/knights/io_base.h b/knights/io_base.h
index 7feeff0..2743f9c 100644
--- a/knights/io_base.h
+++ b/knights/io_base.h
@@ -24,15 +24,16 @@
#include "command.h"
#include "match_param.h"
-#include <qobject.h>
-#include <qwidget.h>
+#include <tqobject.h>
+#include <tqwidget.h>
/**
*@author Alexander Wels.
*/
-class io_base : public QObject
+class io_base : public TQObject
{
Q_OBJECT
+ TQ_OBJECT
public:
@@ -42,7 +43,7 @@ public:
LOCAL = 1
};
- io_base(QWidget *parent=NULL, resource *rsrc=NULL);
+ io_base(TQWidget *tqparent=NULL, resource *rsrc=NULL);
io_base(resource *rsrc);
io_base(resource *rsrc, int ID);
virtual ~io_base();
@@ -59,7 +60,7 @@ signals:
protected:
// The knightio object needs to know its ID
- QWidget *myParent;
+ TQWidget *myParent;
int myID;
resource *myResource;
ioType myType;