diff options
author | Michele Calgaro <[email protected]> | 2023-12-20 22:30:18 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-21 09:39:40 +0900 |
commit | 4d6acadb4557b3dc9db23fe80e361f4f65289ccd (patch) | |
tree | 536561cf7f93c1eaa56e824f1dd96b02bbdaa484 /ksokoban | |
parent | 76f734a8102bfc590570e67a73c40351ea2bbf3f (diff) | |
download | tdegames-4d6acadb4557b3dc9db23fe80e361f4f65289ccd.tar.gz tdegames-4d6acadb4557b3dc9db23fe80e361f4f65289ccd.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 7909152750670148360093b2519955fbfa555154)
Diffstat (limited to 'ksokoban')
-rw-r--r-- | ksokoban/PlayField.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksokoban/PlayField.cpp b/ksokoban/PlayField.cpp index 2b16ed44..f9ec4f79 100644 --- a/ksokoban/PlayField.cpp +++ b/ksokoban/PlayField.cpp @@ -421,7 +421,7 @@ PlayField::highlight() { void PlayField::stopMoving() { - TQT_TQOBJECT(this)->killTimers(); + this->killTimers(); delete moveSequence_; moveSequence_ = 0; moveInProgress_ = false; @@ -456,7 +456,7 @@ void PlayField::timerEvent(TQTimerEvent *) { assert(moveInProgress_); if (moveSequence_ == 0) { - TQT_TQOBJECT(this)->killTimers(); + this->killTimers(); moveInProgress_ = false; return; } |