summaryrefslogtreecommitdiffstats
path: root/knights/dlg_selectengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'knights/dlg_selectengine.h')
-rw-r--r--knights/dlg_selectengine.h27
1 files changed, 14 insertions, 13 deletions
diff --git a/knights/dlg_selectengine.h b/knights/dlg_selectengine.h
index a9dffdb..98d07f4 100644
--- a/knights/dlg_selectengine.h
+++ b/knights/dlg_selectengine.h
@@ -18,7 +18,7 @@
#ifndef DLG_SELECTENGINE_H
#define DLG_SELECTENGINE_H
-#include <qwidget.h>
+#include <tqwidget.h>
#include <kdialogbase.h>
#include "definitions.h"
@@ -26,18 +26,19 @@
*@author Troy Corbin Jr.
*/
-class QVBox;
-class QSlider;
-class QLabel;
+class TQVBox;
+class TQSlider;
+class TQLabel;
class KComboBox;
-class QGroupBox;
+class TQGroupBox;
class resource;
class dlg_selectengine : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- dlg_selectengine(QWidget *parent, resource *Rsrc, bool army );
+ dlg_selectengine(TQWidget *tqparent, resource *Rsrc, bool army );
~dlg_selectengine();
int strength( void );
bool Army;
@@ -58,15 +59,15 @@ class dlg_selectengine : public KDialogBase
int Engine1F;
int Engine2F;
- QVBox *BOX_Parent;
- QGroupBox *BOX_Engine;
+ TQVBox *BOX_Parent;
+ TQGroupBox *BOX_Engine;
KComboBox *COMBO_Engine;
- QGroupBox *BOX_EngineHelper;
+ TQGroupBox *BOX_EngineHelper;
KComboBox *COMBO_EngineHelper;
- QGroupBox *GROUP_Strength;
- QLabel *LABEL_Str_Min;
- QSlider *SLIDER_Strength;
- QLabel *LABEL_Str_Max;
+ TQGroupBox *GROUP_Strength;
+ TQLabel *LABEL_Str_Min;
+ TQSlider *SLIDER_Strength;
+ TQLabel *LABEL_Str_Max;
};
#endif