diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 12:28:49 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 12:28:49 +0900 |
| commit | c20f4d8f2cf03c69fcecc80d63fe3cbb80f51610 (patch) | |
| tree | 50b08262da538c5b91f77e83e4b80d7fd6dbe0de /kjumpingcube/kcubeboxwidget.cpp | |
| parent | 51f65427771c47f6d34cda56b07d9d82bd0bfd33 (diff) | |
| download | tdegames-c20f4d8f2cf03c69fcecc80d63fe3cbb80f51610.tar.gz tdegames-c20f4d8f2cf03c69fcecc80d63fe3cbb80f51610.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kjumpingcube/kcubeboxwidget.cpp')
| -rw-r--r-- | kjumpingcube/kcubeboxwidget.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kjumpingcube/kcubeboxwidget.cpp b/kjumpingcube/kcubeboxwidget.cpp index 9b589b96..3a03ad4b 100644 --- a/kjumpingcube/kcubeboxwidget.cpp +++ b/kjumpingcube/kcubeboxwidget.cpp @@ -435,12 +435,12 @@ void KCubeBoxWidget::init() KCubeWidget::enableClicks(true); loadSettings(); - connect(moveTimer,TQT_SIGNAL(timeout()),TQT_SLOT(nextLoopStep())); - connect(this,TQT_SIGNAL(startedThinking()),TQT_SLOT(setWaitCursor())); - connect(this,TQT_SIGNAL(stoppedThinking()),TQT_SLOT(setNormalCursor())); - connect(this,TQT_SIGNAL(startedMoving()),TQT_SLOT(setWaitCursor())); - connect(this,TQT_SIGNAL(stoppedMoving()),TQT_SLOT(setNormalCursor())); - connect(this,TQT_SIGNAL(playerWon(int)),TQT_SLOT(stopActivities())); + connect(moveTimer,TQ_SIGNAL(timeout()),TQ_SLOT(nextLoopStep())); + connect(this,TQ_SIGNAL(startedThinking()),TQ_SLOT(setWaitCursor())); + connect(this,TQ_SIGNAL(stoppedThinking()),TQ_SLOT(setNormalCursor())); + connect(this,TQ_SIGNAL(startedMoving()),TQ_SLOT(setWaitCursor())); + connect(this,TQ_SIGNAL(stoppedMoving()),TQ_SLOT(setNormalCursor())); + connect(this,TQ_SIGNAL(playerWon(int)),TQ_SLOT(stopActivities())); setNormalCursor(); @@ -476,8 +476,8 @@ void KCubeBoxWidget::initCubes() cubes[i][j]->setCoordinates(i,j); layout->addWidget(cubes[i][j],i,j); cubes[i][j]->show(); - connect(cubes[i][j],TQT_SIGNAL(clicked(int,int,bool)),TQT_SLOT(stopHint())); - connect(cubes[i][j],TQT_SIGNAL(clicked(int,int,bool)),TQT_SLOT(checkClick(int,int,bool))); + connect(cubes[i][j],TQ_SIGNAL(clicked(int,int,bool)),TQ_SLOT(stopHint())); + connect(cubes[i][j],TQ_SIGNAL(clicked(int,int,bool)),TQ_SLOT(checkClick(int,int,bool))); } // initialize cubes |
