summaryrefslogtreecommitdiffstats
path: root/kpoker/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpoker/player.h')
-rw-r--r--kpoker/player.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kpoker/player.h b/kpoker/player.h
index 7d3988cf..56399151 100644
--- a/kpoker/player.h
+++ b/kpoker/player.h
@@ -19,7 +19,7 @@
#define PLAYER_H
// QT includes
-#include <qstring.h>
+#include <tqstring.h>
// KDE includes
#include <krandomsequence.h>
@@ -100,7 +100,7 @@ class PokerPlayer
* Sets a new name
* @param newName The new name of the player
**/
- void setName(const QString &newName) { m_name = newName; }
+ void setName(const TQString &newName) { m_name = newName; }
/**
* Informs the player that he is out (or is not out anymore)
@@ -165,7 +165,7 @@ class PokerPlayer
/**
* @return The name of the player
**/
- QString getName() const { return m_name; }
+ TQString getName() const { return m_name; }
// FIXME: Rename to hasFolded?
/**
@@ -194,7 +194,7 @@ class PokerPlayer
private:
// Basic data:
- QString m_name; // The name of the player.
+ TQString m_name; // The name of the player.
bool m_isHuman; // True if the player is human.
// The hand itself