From 576eb4299a00bc053db35414406f46372a0f70f2 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:42:31 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1157643 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksokoban/LevelCollection.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'ksokoban/LevelCollection.h') diff --git a/ksokoban/LevelCollection.h b/ksokoban/LevelCollection.h index f01d1316..0f0b3b11 100644 --- a/ksokoban/LevelCollection.h +++ b/ksokoban/LevelCollection.h @@ -20,19 +20,19 @@ #ifndef LEVELCOLLECTION_H #define LEVELCOLLECTION_H -#include -#include -#include +#include +#include +#include class Map; class LevelCollection { public: - LevelCollection(const char *_def, int _len, const QString &_name, int _id=-1); - LevelCollection(const QString &_path, const QString &_name, int _id=-1); + LevelCollection(const char *_def, int _len, const TQString &_name, int _id=-1); + LevelCollection(const TQString &_path, const TQString &_name, int _id=-1); ~LevelCollection(); - const QString &name() const { return name_; } + const TQString &name() const { return name_; } int id() const { return id_; } int level() const { return level_; } void level(int _level); @@ -51,15 +51,15 @@ private: void addData(const char* _data, unsigned _len); void addSeparator(); - QPtrVector index_; - QByteArray data_; + TQPtrVector index_; + TQByteArray data_; //int dataLen_; int level_; int completedLevels_; int noOfLevels_; - QString name_; - QString path_; + TQString name_; + TQString path_; int id_; }; -- cgit v1.2.1