summaryrefslogtreecommitdiffstats
path: root/atlantik/libatlantic/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'atlantik/libatlantic/game.cpp')
-rw-r--r--atlantik/libatlantic/game.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/atlantik/libatlantic/game.cpp b/atlantik/libatlantic/game.cpp
index 1f4eb244..308a827d 100644
--- a/atlantik/libatlantic/game.cpp
+++ b/atlantik/libatlantic/game.cpp
@@ -14,15 +14,15 @@
// the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
// Boston, MA 02110-1301, USA.
-#include <qstring.h>
+#include <tqstring.h>
#include "game.h"
-Game::Game(int gameId) : QObject()
+Game::Game(int gameId) : TQObject()
{
m_id = gameId;
- m_description = QString::null;
- m_type = QString::null;
+ m_description = TQString::null;
+ m_type = TQString::null;
m_players = 0;
m_master = 0;
@@ -48,7 +48,7 @@ bool Game::canBeJoined() const
return m_canBeJoined;
}
-void Game::setDescription(const QString &description)
+void Game::setDescription(const TQString &description)
{
if (m_description != description)
{
@@ -57,12 +57,12 @@ void Game::setDescription(const QString &description)
}
}
-QString Game::description() const
+TQString Game::description() const
{
return m_description;
}
-void Game::setName(const QString &name)
+void Game::setName(const TQString &name)
{
if (m_name != name)
{
@@ -71,12 +71,12 @@ void Game::setName(const QString &name)
}
}
-QString Game::name() const
+TQString Game::name() const
{
return m_name;
}
-void Game::setType(const QString &type)
+void Game::setType(const TQString &type)
{
if (m_type != type)
{
@@ -85,7 +85,7 @@ void Game::setType(const QString &type)
}
}
-QString Game::type() const
+TQString Game::type() const
{
return m_type;
}