summaryrefslogtreecommitdiffstats
path: root/ksquirrel/ksquirrelpart/sq_diroperator.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-30 16:29:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-30 16:29:10 +0900
commitbd78d59d712b6ac594d0bd0b9d4bd7cc3c6af8db (patch)
tree0d06e55abb137dce9a0fec3b4bf0f726d981cd1f /ksquirrel/ksquirrelpart/sq_diroperator.cpp
parent69c8b6084655e30ef0fd8b0aef498faf8f23bff3 (diff)
downloadksquirrel-bd78d59d712b6ac594d0bd0b9d4bd7cc3c6af8db.tar.gz
ksquirrel-bd78d59d712b6ac594d0bd0b9d4bd7cc3c6af8db.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'ksquirrel/ksquirrelpart/sq_diroperator.cpp')
-rw-r--r--ksquirrel/ksquirrelpart/sq_diroperator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ksquirrel/ksquirrelpart/sq_diroperator.cpp b/ksquirrel/ksquirrelpart/sq_diroperator.cpp
index 00eabf6..bf2232f 100644
--- a/ksquirrel/ksquirrelpart/sq_diroperator.cpp
+++ b/ksquirrel/ksquirrelpart/sq_diroperator.cpp
@@ -31,8 +31,8 @@ SQ_DirOperator::SQ_DirOperator(TQObject *parent) : TQObject(parent)
down = new SQ_Downloader(this, "SQ_Downloader [dirop]");
- connect(down, TQT_SIGNAL(result(const KURL &)), this, TQT_SLOT(slotDownloaderResult(const KURL &)));
- connect(down, TQT_SIGNAL(percents(int)), this, TQT_SLOT(slotDownloadPercents(int)));
+ connect(down, TQ_SIGNAL(result(const KURL &)), this, TQ_SLOT(slotDownloaderResult(const KURL &)));
+ connect(down, TQ_SIGNAL(percents(int)), this, TQ_SLOT(slotDownloadPercents(int)));
}
SQ_DirOperator::~SQ_DirOperator()