summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-06 12:40:25 +0900
committerMichele Calgaro <[email protected]>2024-01-09 10:10:44 +0900
commite62fccb82e8de145da93b105768843792095a6a2 (patch)
tree5e60d7eff352b7126885cf9e0eb39dddfc9f535f
parent6d87cc1f7d7683c96fec9d09926286de836cbf48 (diff)
downloadtdeio-umountwrapper-e62fccb82e8de145da93b105768843792095a6a2.tar.gz
tdeio-umountwrapper-e62fccb82e8de145da93b105768843792095a6a2.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 615d31c9157c8e6503dd4eb910599ffd331dfffd)
-rw-r--r--src/tdeio_umountwrapper.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tdeio_umountwrapper.cpp b/src/tdeio_umountwrapper.cpp
index 98c4d61..fde866d 100644
--- a/src/tdeio_umountwrapper.cpp
+++ b/src/tdeio_umountwrapper.cpp
@@ -44,7 +44,7 @@ tdeio_umountwrapper::tdeio_umountwrapper(const TQString& url)
m_progress->show();
TQTimer *t = new TQTimer(this);
- connect(t, TQT_SIGNAL(timeout()), TQT_SLOT(progressAdvance()));
+ connect(t, TQ_SIGNAL(timeout()), TQ_SLOT(progressAdvance()));
t->start(10, FALSE);
TDEProcess *p = new TDEProcess(this);
@@ -52,8 +52,8 @@ tdeio_umountwrapper::tdeio_umountwrapper(const TQString& url)
*p << "-s";
*p << url;
kdDebug(7136) << "TDEProcess: " << url << endl;
- connect(p, TQT_SIGNAL(processExited(TDEProcess *)),
- this, TQT_SLOT(processFinished(TDEProcess *)));
+ connect(p, TQ_SIGNAL(processExited(TDEProcess *)),
+ this, TQ_SLOT(processFinished(TDEProcess *)));
p->start();
}