diff options
Diffstat (limited to 'kspaceduel/playerinfo.h')
-rw-r--r-- | kspaceduel/playerinfo.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kspaceduel/playerinfo.h b/kspaceduel/playerinfo.h index e172c982..42fc8158 100644 --- a/kspaceduel/playerinfo.h +++ b/kspaceduel/playerinfo.h @@ -1,26 +1,26 @@ #ifndef __PLAYER_INFO_H #define __PLAYER_INFO_H -#include <qframe.h> -#include <qlabel.h> +#include <tqframe.h> +#include <tqlabel.h> class QPixmap; -#include <qlcdnumber.h> -#include <qcolor.h> +#include <tqlcdnumber.h> +#include <tqcolor.h> class PlayerInfo:public QFrame { Q_OBJECT public: - PlayerInfo(int pnr,QWidget *parent=0,const char *name=0); + PlayerInfo(int pnr,TQWidget *parent=0,const char *name=0); public slots: void setHitpoints(int h); void setEnergy(int e); void setWins(int w); private: - QPixmap* pix[4]; + TQPixmap* pix[4]; int currentPixmap; - QLabel lplayer,lenergy,lwins; - QLCDNumber hitpoints,energy,wins; + TQLabel lplayer,lenergy,lwins; + TQLCDNumber hitpoints,energy,wins; }; #endif |