summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/misc/customcommands
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 21:14:54 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-01 17:43:32 +0900
commitf198284ddf2e77ff104e19fa72efe7b822f87048 (patch)
tree710187f3baa760a2785d1c1803e330c8ef3e650d /kftpgrabber/src/misc/customcommands
parent91bacaa97a80630cf67c33f15a05a50dadf53a40 (diff)
downloadkftpgrabber-f198284d.tar.gz
kftpgrabber-f198284d.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 638b81d96f17e659ffc86fc2aac2befe33d1d3af)
Diffstat (limited to 'kftpgrabber/src/misc/customcommands')
-rw-r--r--kftpgrabber/src/misc/customcommands/entry.cpp2
-rw-r--r--kftpgrabber/src/misc/customcommands/manager.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/kftpgrabber/src/misc/customcommands/entry.cpp b/kftpgrabber/src/misc/customcommands/entry.cpp
index 4f9d0fb..f503e3b 100644
--- a/kftpgrabber/src/misc/customcommands/entry.cpp
+++ b/kftpgrabber/src/misc/customcommands/entry.cpp
@@ -83,7 +83,7 @@ void Entry::execute(KFTPSession::Session *session)
// Execute the command with proper parameters
m_lastSession = session;
- connect(session->getClient()->eventHandler(), SIGNAL(gotRawResponse(const TQString&)), this, SLOT(handleResponse(const TQString&)));
+ connect(session->getClient()->eventHandler(), TQ_SIGNAL(gotRawResponse(const TQString&)), this, TQ_SLOT(handleResponse(const TQString&)));
session->getClient()->raw(command);
}
diff --git a/kftpgrabber/src/misc/customcommands/manager.cpp b/kftpgrabber/src/misc/customcommands/manager.cpp
index 2d0f8b5..625f62d 100644
--- a/kftpgrabber/src/misc/customcommands/manager.cpp
+++ b/kftpgrabber/src/misc/customcommands/manager.cpp
@@ -167,7 +167,7 @@ void Manager::parseEntries(TDEActionMenu *parentMenu, const TQDomNode &parentNod
// Create a new action
EntryAction *action = new EntryAction(entry, session);
- connect(action, SIGNAL(activated()), this, SLOT(slotActionActivated()));
+ connect(action, TQ_SIGNAL(activated()), this, TQ_SLOT(slotActionActivated()));
parentMenu->insert(action);
} else if (tagName == "separator") {