diff options
Diffstat (limited to 'ksokoban/History.h')
-rw-r--r-- | ksokoban/History.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ksokoban/History.h b/ksokoban/History.h index c3db5194..27825f95 100644 --- a/ksokoban/History.h +++ b/ksokoban/History.h @@ -20,8 +20,8 @@ #ifndef HISTORY_H #define HISTORY_H -#include <qptrlist.h> -#include <qstring.h> +#include <tqptrlist.h> +#include <tqstring.h> #include "Move.h" class MoveSequence; @@ -37,8 +37,8 @@ class MoveSequence; class History { private: - QPtrList<Move> past_; - QPtrList<Move> future_; + TQPtrList<Move> past_; + TQPtrList<Move> future_; protected: @@ -53,7 +53,7 @@ public: */ void clear(); - void save(QString &_str); + void save(TQString &_str); const char *load(LevelMap *map, const char *_str); bool redo(LevelMap *map); MoveSequence *deferRedo(LevelMap *map); |