summaryrefslogtreecommitdiffstats
path: root/konquest/minimap.h
diff options
context:
space:
mode:
Diffstat (limited to 'konquest/minimap.h')
-rw-r--r--konquest/minimap.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/konquest/minimap.h b/konquest/minimap.h
index 9d205abb..886e247c 100644
--- a/konquest/minimap.h
+++ b/konquest/minimap.h
@@ -1,11 +1,11 @@
#ifndef _MINIMAP_H
#define _MINIMAP_H
-#include <qwidget.h>
-#include <qframe.h>
-#include <qpixmap.h>
-#include <qgridview.h>
-#include <qtimer.h>
+#include <tqwidget.h>
+#include <tqframe.h>
+#include <tqpixmap.h>
+#include <tqgridview.h>
+#include <tqtimer.h>
#include "gamecore.h"
#include "images.h"
@@ -17,13 +17,13 @@ class MiniMap : public QGridView
// Constructors
public:
- MiniMap( QWidget *parent = 0, const char* name = 0 );
+ MiniMap( TQWidget *parent = 0, const char* name = 0 );
virtual ~MiniMap();
void setMap( Map *newMap );
protected:
- void paintCell( QPainter *p, int row, int col );
+ void paintCell( TQPainter *p, int row, int col );
private slots:
void mapUpdate();
@@ -35,7 +35,7 @@ private:
int BOARD_HEIGHT;
int BOARD_WIDTH;
- void drawSector( QPainter *, Sector & );
+ void drawSector( TQPainter *, Sector & );
Map *map;
};