summaryrefslogtreecommitdiffstats
path: root/kolf/scoreboard.h
diff options
context:
space:
mode:
Diffstat (limited to 'kolf/scoreboard.h')
-rw-r--r--kolf/scoreboard.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kolf/scoreboard.h b/kolf/scoreboard.h
index b9dc78f4..618069dd 100644
--- a/kolf/scoreboard.h
+++ b/kolf/scoreboard.h
@@ -1,7 +1,7 @@
#ifndef SCOREBOARD_H
#define SCOREBOARD_H
-#include <qtable.h>
+#include <tqtable.h>
class QWidget;
class QHeader;
@@ -11,19 +11,19 @@ class ScoreBoard : public QTable
Q_OBJECT
public:
- ScoreBoard(QWidget *parent = 0, const char *name = 0);
- int total(int id, QString &name);
+ ScoreBoard(TQWidget *parent = 0, const char *name = 0);
+ int total(int id, TQString &name);
public slots:
void newHole(int);
- void newPlayer(const QString &name);
+ void newPlayer(const TQString &name);
void setScore(int id, int hole, int score);
void parChanged(int hole, int par);
private:
- QTable *table;
- QHeader *vh;
- QHeader *hh;
+ TQTable *table;
+ TQHeader *vh;
+ TQHeader *hh;
};
#endif