diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:42:31 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:42:31 +0000 |
commit | 576eb4299a00bc053db35414406f46372a0f70f2 (patch) | |
tree | 4c030922d533821db464af566188e7d40cc8848c /ksokoban/History.h | |
parent | 0718336b6017d1a4fc1d626544180a5a2a29ddec (diff) | |
download | tdegames-576eb4299a00bc053db35414406f46372a0f70f2.tar.gz tdegames-576eb4299a00bc053db35414406f46372a0f70f2.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1157643 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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); |