diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-05 12:06:27 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-07 10:48:18 +0900 |
| commit | 806da231c0cdfdaaf963cf6fec0d88ac3dedbc33 (patch) | |
| tree | 909a5990ad9ad8096c2528072294fd291457cc36 /tdescreensaver/kdesavers/rotation.cpp | |
| parent | f6ddaa842ae396ad256d43678df5b93fdc84be00 (diff) | |
| download | tdeartwork-806da231.tar.gz tdeartwork-806da231.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 35e9f174e4415e4f7be3b01b94f01fc15bb18144)
Diffstat (limited to 'tdescreensaver/kdesavers/rotation.cpp')
| -rw-r--r-- | tdescreensaver/kdesavers/rotation.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tdescreensaver/kdesavers/rotation.cpp b/tdescreensaver/kdesavers/rotation.cpp index a51cfb19..b7dc691a 100644 --- a/tdescreensaver/kdesavers/rotation.cpp +++ b/tdescreensaver/kdesavers/rotation.cpp @@ -490,7 +490,7 @@ KRotationSaver::KRotationSaver(WId id) glArea->show(); // show gl widget timer = new TQTimer(this); - timer->start(deltaT, TRUE); + timer->start(deltaT, true); connect(timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(doTimeStep())); } @@ -675,7 +675,7 @@ void KRotationSaver::doTimeStep() } glArea->updateGL(); - timer->start(deltaT, TRUE); // restart timer + timer->start(deltaT, true); // restart timer } // public slot of KRotationSaver, forward resize event to public slot of glArea @@ -696,7 +696,7 @@ KRotationSetup::KRotationSetup(TQWidget* parent, const char* name) { // the dialog should block, no other control center input should be possible // until the dialog is closed - setModal(TRUE); + setModal(true); lengthEdit->setValidator( new TQDoubleValidator( |
