summaryrefslogtreecommitdiffstats
path: root/atlantik/libatlantic/game.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
commit576eb4299a00bc053db35414406f46372a0f70f2 (patch)
tree4c030922d533821db464af566188e7d40cc8848c /atlantik/libatlantic/game.h
parent0718336b6017d1a4fc1d626544180a5a2a29ddec (diff)
downloadtdegames-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 'atlantik/libatlantic/game.h')
-rw-r--r--atlantik/libatlantic/game.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/atlantik/libatlantic/game.h b/atlantik/libatlantic/game.h
index 8eaa85f6..7194dfd3 100644
--- a/atlantik/libatlantic/game.h
+++ b/atlantik/libatlantic/game.h
@@ -17,7 +17,7 @@
#ifndef LIBATLANTIC_GAME_H
#define LIBATLANTIC_GAME_H
-#include <qobject.h>
+#include <tqobject.h>
#include "libatlantic_export.h"
@@ -35,12 +35,12 @@ public:
int id() const;
void setCanBeJoined(const bool &canBeJoined);
bool canBeJoined() const;
- void setDescription(const QString &description);
- QString description() const;
- void setName(const QString &name);
- QString name() const;
- void setType(const QString &type);
- QString type() const;
+ void setDescription(const TQString &description);
+ TQString description() const;
+ void setName(const TQString &name);
+ TQString name() const;
+ void setType(const TQString &type);
+ TQString type() const;
int players();
void setPlayers(int players);
Player *master();
@@ -54,7 +54,7 @@ signals:
private:
bool m_changed;
bool m_canBeJoined;
- QString m_description, m_name, m_type;
+ TQString m_description, m_name, m_type;
int m_id, m_players;
Player *m_master;
};