diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:36:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 19:04:19 +0900 |
commit | c03872d3d0ef1a2cb0b6e0727d4daa9a6fd8737c (patch) | |
tree | 45551de5dc2969e14f77a2fb40008f16eb393396 /src/countdowndialog.cpp | |
parent | f5832e4abf01ded35901fb49f2f5edd73b594cc8 (diff) | |
download | tdepowersave-c03872d3d0ef1a2cb0b6e0727d4daa9a6fd8737c.tar.gz tdepowersave-c03872d3d0ef1a2cb0b6e0727d4daa9a6fd8737c.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 9b171f8e1773c29be3ceab2c5ae8b760d78a1b54)
Diffstat (limited to 'src/countdowndialog.cpp')
-rw-r--r-- | src/countdowndialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/countdowndialog.cpp b/src/countdowndialog.cpp index 7cb86ef..70087f3 100644 --- a/src/countdowndialog.cpp +++ b/src/countdowndialog.cpp @@ -53,7 +53,7 @@ countDownDialog::countDownDialog( int timeout, TQWidget *parent, const char *nam timeOut = timeout; PROGRESS = new TQTimer(this); - connect(PROGRESS, TQT_SIGNAL(timeout()), this, TQT_SLOT(updateProgress())); + connect(PROGRESS, TQ_SIGNAL(timeout()), this, TQ_SLOT(updateProgress())); this->setCaption(i18n("TDEPowersave")); @@ -137,7 +137,7 @@ bool countDownDialog::showDialog() { } /*! - * \b TQT_SLOT to get the event if the 'Cancel' button was pressed. + * \b Slot to get the event if the 'Cancel' button was pressed. */ void countDownDialog::pB_cancel_pressed() { kdDebugFuncIn(trace); @@ -162,7 +162,7 @@ void countDownDialog::reject() { } /*! - * \b TQT_SLOT to handle the change of the progressbar. + * \b Slot to handle the change of the progressbar. */ void countDownDialog::updateProgress() { kdDebugFuncIn(trace); |