summaryrefslogtreecommitdiffstats
path: root/knights/dlg_challenge.h
diff options
context:
space:
mode:
Diffstat (limited to 'knights/dlg_challenge.h')
-rw-r--r--knights/dlg_challenge.h53
1 files changed, 27 insertions, 26 deletions
diff --git a/knights/dlg_challenge.h b/knights/dlg_challenge.h
index 2fbfb68..e21da4a 100644
--- a/knights/dlg_challenge.h
+++ b/knights/dlg_challenge.h
@@ -20,12 +20,12 @@
#include <kdialogbase.h>
#include <kcombobox.h>
-#include <qgroupbox.h>
-#include <qspinbox.h>
-#include <qcheckbox.h>
-#include <qlabel.h>
-#include <qvbox.h>
-#include <qhbox.h>
+#include <tqgroupbox.h>
+#include <tqspinbox.h>
+#include <tqcheckbox.h>
+#include <tqlabel.h>
+#include <tqvbox.h>
+#include <tqhbox.h>
#include "resource.h"
/**
@@ -35,35 +35,36 @@
class dlg_challenge : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- dlg_challenge(QWidget *parent=0, const char *name=0, resource *Rsrc=0);
+ dlg_challenge(TQWidget *tqparent=0, const char *name=0, resource *Rsrc=0);
~dlg_challenge();
- void setValues( const QString&, const QString& );
- QString values( void );
+ void setValues( const TQString&, const TQString& );
+ TQString values( void );
public slots:
void slot_changed( int );
void slot_timeOdds( bool );
private:
resource *Resource;
- QString otherPlayer;
- QString localRating;
- QString otherRating;
+ TQString otherPlayer;
+ TQString localRating;
+ TQString otherRating;
- QVBox *BOX_Parent;
- QLabel *LABEL_Headline;
+ TQVBox *BOX_Parent;
+ TQLabel *LABEL_Headline;
KComboBox *COMBO_Rated;
- QHBox *BOX_Time;
- QGroupBox *BOX_White;
- QSpinBox *BOX_WhiteBase;
- QSpinBox *BOX_WhiteInc;
- QLabel *LABEL_WhiteBase;
- QLabel *LABEL_WhiteInc;
- QGroupBox *BOX_Black;
- QSpinBox *BOX_BlackBase;
- QSpinBox *BOX_BlackInc;
- QLabel *LABEL_BlackBase;
- QLabel *LABEL_BlackInc;
- QCheckBox *BUTTON_TimeOdds;
+ TQHBox *BOX_Time;
+ TQGroupBox *BOX_White;
+ TQSpinBox *BOX_WhiteBase;
+ TQSpinBox *BOX_WhiteInc;
+ TQLabel *LABEL_WhiteBase;
+ TQLabel *LABEL_WhiteInc;
+ TQGroupBox *BOX_Black;
+ TQSpinBox *BOX_BlackBase;
+ TQSpinBox *BOX_BlackInc;
+ TQLabel *LABEL_BlackBase;
+ TQLabel *LABEL_BlackInc;
+ TQCheckBox *BUTTON_TimeOdds;
};
#endif