summaryrefslogtreecommitdiffstats
path: root/kbackgammon/kbg.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbackgammon/kbg.h')
-rw-r--r--kbackgammon/kbg.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kbackgammon/kbg.h b/kbackgammon/kbg.h
index d191c8a3..030b30ad 100644
--- a/kbackgammon/kbg.h
+++ b/kbackgammon/kbg.h
@@ -73,7 +73,7 @@ public slots:
* Set the caption to KFIBS_NAME + string + pipcount (if requested by
* the user)
*/
- void updateCaption(const QString &s);
+ void updateCaption(const TQString &s);
/**
* Slot to be called by the engine - it enables/disables buttons
@@ -86,7 +86,7 @@ public slots:
*/
void setupEngine();
- void startKCM(const QString &);
+ void startKCM(const TQString &);
signals:
@@ -106,12 +106,12 @@ protected:
/*
* Windows are to be hidden
*/
- virtual void hideEvent(QHideEvent *);
+ virtual void hideEvent(TQHideEvent *);
/*
* Redisplay the windows
*/
- virtual void showEvent(QShowEvent *);
+ virtual void showEvent(TQShowEvent *);
/*
* Called before the window is closed. Check with the engine
@@ -140,7 +140,7 @@ protected slots:
* Takes text from the commandline and hands it over to the
* current engine
*/
- void handleCmd(const QString &);
+ void handleCmd(const TQString &);
/**
* Saves the user settings to disk
@@ -198,13 +198,13 @@ private:
* Each engine has its own identifier.
*/
enum Engines {None = -1, Offline, FIBS, GNUbg, NextGen, MaxEngine};
- QString engineString[MaxEngine];
+ TQString engineString[MaxEngine];
KBgEngine *engine[MaxEngine];
int currEngine;
- QPopupMenu *dummyPopup;
+ TQPopupMenu *dummyPopup;
enum HelpTopics {FIBSHome, RuleHome, MaxHelpTopic};
- QString helpTopic[MaxHelpTopic][2];
+ TQString helpTopic[MaxHelpTopic][2];
KSelectAction *engineSet;
/**
@@ -212,17 +212,17 @@ private:
*/
KDialogBase *nb;
KDoubleNumInput *sbt;
- QCheckBox *cbt, *cbs, *cbm;
+ TQCheckBox *cbt, *cbs, *cbm;
/*
* UI elements
*/
- QSplitter *panner;
+ TQSplitter *panner;
KBgBoardSetup *board;
KBgTextView *status;
KLineEdit *cmdLine;
- QLabel *cmdLabel;
- QString baseCaption; // for user friendly printing, we keep it around
+ TQLabel *cmdLabel;
+ TQString baseCaption; // for user friendly printing, we keep it around
};
#endif // __KBG_H