diff options
Diffstat (limited to 'ksnake/pixServer.h')
-rw-r--r-- | ksnake/pixServer.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/ksnake/pixServer.h b/ksnake/pixServer.h index 783f7efa..c081a491 100644 --- a/ksnake/pixServer.h +++ b/ksnake/pixServer.h @@ -26,7 +26,7 @@ #ifndef PIXSERVER_H #define PIXSERVER_H -#include <qpixmap.h> +#include <tqpixmap.h> class Board; enum SnakePix {TailUp, TailDown, TailRight, TailLeft, @@ -41,7 +41,7 @@ class PixServer { public: PixServer (Board *); - QPixmap levelPix() const { return cachePix; } + TQPixmap levelPix() const { return cachePix; } void initRoomPixmap(); void initBrickPixmap(); @@ -55,20 +55,20 @@ public: private: Board *board; - void drawBrick(QPainter *, int); + void drawBrick(TQPainter *, int); - QPixmap samyPix[18]; - QPixmap compuSnakePix[18]; - QPixmap ballPix[4]; - QPixmap applePix[2]; + TQPixmap samyPix[18]; + TQPixmap compuSnakePix[18]; + TQPixmap ballPix[4]; + TQPixmap applePix[2]; - QPixmap roomPix; - QPixmap cachePix; - QPixmap offPix; - QPixmap backPix; + TQPixmap roomPix; + TQPixmap cachePix; + TQPixmap offPix; + TQPixmap backPix; bool plainColor; - QColor backgroundColor; + TQColor backgroundColor; }; |