diff options
author | Michele Calgaro <[email protected]> | 2024-01-11 10:46:02 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-11 10:46:02 +0900 |
commit | 64efc076184547c5d23863fb027dd3a01d552f19 (patch) | |
tree | cbce71b757decf6ecf1b8cb324cedcaf0ec8a011 /tdescreensaver/kdesavers/rotation.cpp | |
parent | 10f6b171a83061ddb1feb22d148fc956eb7fe6a4 (diff) | |
download | tdeartwork-64efc076184547c5d23863fb027dd3a01d552f19.tar.gz tdeartwork-64efc076184547c5d23863fb027dd3a01d552f19.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
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 a00f7bbc..6ae1aba6 100644 --- a/tdescreensaver/kdesavers/rotation.cpp +++ b/tdescreensaver/kdesavers/rotation.cpp @@ -491,7 +491,7 @@ KRotationSaver::KRotationSaver(WId id) timer = new TQTimer(this); timer->start(deltaT, TRUE); - connect(timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(doTimeStep())); + connect(timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(doTimeStep())); } KRotationSaver::~KRotationSaver() @@ -754,8 +754,8 @@ KRotationSetup::KRotationSetup(TQWidget* parent, const char* name) // if the preview area is resized it emmits the resized() event which is // caught by the saver. The embedded GlArea is resized to fit into the // preview area. - connect(preview, TQT_SIGNAL(resized(TQResizeEvent*)), - saver, TQT_SLOT(resizeGlArea(TQResizeEvent*))); + connect(preview, TQ_SIGNAL(resized(TQResizeEvent*)), + saver, TQ_SLOT(resizeGlArea(TQResizeEvent*))); } KRotationSetup::~KRotationSetup() |