diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:31:10 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:31:10 -0600 |
commit | 0e2b76239f354a9eead0b4e37d86d390ec57ffa9 (patch) | |
tree | cd20202507f54f61a4e58ae64fcd7cdb894abe19 /kbackgammon/kbgstatus.h | |
parent | 84ace1135cac57993b72fee7105b92def1638d32 (diff) | |
download | tdegames-0e2b76239f354a9eead0b4e37d86d390ec57ffa9.tar.gz tdegames-0e2b76239f354a9eead0b4e37d86d390ec57ffa9.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'kbackgammon/kbgstatus.h')
-rw-r--r-- | kbackgammon/kbgstatus.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kbackgammon/kbgstatus.h b/kbackgammon/kbgstatus.h index 255dc049..69d1a0b6 100644 --- a/kbackgammon/kbgstatus.h +++ b/kbackgammon/kbgstatus.h @@ -43,7 +43,7 @@ * @author Jens Hoefkens <jens@hoefkens.com> * @version $Id$ */ -class KBgtqStatus : public TQObject +class KBgStatus : public TQObject { Q_OBJECT @@ -66,27 +66,27 @@ class KBgtqStatus : public TQObject * The default constructor initializes the status to an "empty" * state. The board and dice are empty and the cube shows 1. */ - KBgtqStatus(); + KBgStatus(); /** * Constructor from a FIBS rawboard string */ - KBgtqStatus(const TQString &rawboard); + KBgStatus(const TQString &rawboard); /** * Copy constructor */ - KBgtqStatus(const KBgtqStatus &rhs); + KBgStatus(const KBgStatus &rhs); /** * Assignment operator */ - KBgtqStatus& operator=(const KBgtqStatus &rhs); + KBgStatus& operator=(const KBgStatus &rhs); /** * Destructor */ - virtual ~KBgtqStatus(); + virtual ~KBgStatus(); /* @@ -289,12 +289,12 @@ class KBgtqStatus : public TQObject * anywhere starting from start or later into direction * dir in the game given by sc. */ - bool movePossible(KBgtqStatus &sc, int a, int start, int dir) const; + bool movePossible(KBgStatus &sc, int a, int start, int dir) const; /* * Copy constr. and assignment share a lot of code. */ - void copy(const KBgtqStatus &rhs); + void copy(const KBgStatus &rhs); /* * Private variables with self-expalanatory names. |