diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:47:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:47:36 -0600 |
commit | 97d1732e257f8700488d7ca1660ae7eba8fc6065 (patch) | |
tree | 4c6397ed2c1dd6f7c3354b5b87f313547d92a35f /libtdegames/kgame/kgame.h | |
parent | 9c27a1a03e02fd53aedc1a182444b35fd8e14967 (diff) | |
download | tdegames-97d1732e257f8700488d7ca1660ae7eba8fc6065.tar.gz tdegames-97d1732e257f8700488d7ca1660ae7eba8fc6065.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'libtdegames/kgame/kgame.h')
-rw-r--r-- | libtdegames/kgame/kgame.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libtdegames/kgame/kgame.h b/libtdegames/kgame/kgame.h index bf66dcb8..7ad010fc 100644 --- a/libtdegames/kgame/kgame.h +++ b/libtdegames/kgame/kgame.h @@ -118,7 +118,7 @@ public: * The KGame e.g. sets the status to Pause when you have * less player than the minimum amount */ - enum GametqStatus + enum GameStatus { Init = 0, Run = 1, @@ -127,7 +127,7 @@ public: Abort = 4, SystemPause = 5, Intro = 6, - UsertqStatus = 7 + UserStatus = 7 }; // Properties @@ -387,14 +387,14 @@ public: * * @return game status */ - int gametqStatus() const; + int gameStatus() const; /** * sets the game status * * @param status the new status */ - void setGametqStatus(int status); + void setGameStatus(int status); /** * docu: see KPlayer @@ -433,7 +433,7 @@ public: * @param msg the message which will be send. See messages.txt for contents * @param msgid an id for this message * @param sender the id of the sender - * @param group the group of the tqreceivers + * @param group the group of the receivers * @return true if worked */ bool sendGroupMessage(const TQByteArray& msg, int msgid, TQ_UINT32 sender, const TQString& group); |