From bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 4 Jan 2024 10:28:49 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- src/formatimporter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/formatimporter.cpp') diff --git a/src/formatimporter.cpp b/src/formatimporter.cpp index b87a350..90e8ba3 100644 --- a/src/formatimporter.cpp +++ b/src/formatimporter.cpp @@ -63,7 +63,7 @@ void FormatImporter::copyFolder(const TQString &folder, const TQString &newFolde { copyFinished = false; TDEIO::CopyJob *copyJob = TDEIO::copyAs(KURL(folder), KURL(newFolder), /*showProgressInfo=*/false); - connect( copyJob, TQT_SIGNAL(result(TDEIO::Job*)), this, TQT_SLOT(slotCopyingDone(TDEIO::Job*)) ); + connect( copyJob, TQ_SIGNAL(result(TDEIO::Job*)), this, TQ_SLOT(slotCopyingDone(TDEIO::Job*)) ); while (!copyFinished) kapp->processEvents(); } @@ -72,7 +72,7 @@ void FormatImporter::moveFolder(const TQString &folder, const TQString &newFolde { copyFinished = false; TDEIO::CopyJob *copyJob = TDEIO::moveAs(KURL(folder), KURL(newFolder), /*showProgressInfo=*/false); - connect( copyJob, TQT_SIGNAL(result(TDEIO::Job*)), this, TQT_SLOT(slotCopyingDone(TDEIO::Job*)) ); + connect( copyJob, TQ_SIGNAL(result(TDEIO::Job*)), this, TQ_SLOT(slotCopyingDone(TDEIO::Job*)) ); while (!copyFinished) kapp->processEvents(); } -- cgit v1.2.3