diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 21:15:30 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-01 00:28:58 +0900 |
commit | 2a35cd2f709b2d6418b70f3ef999f204d1c48dc0 (patch) | |
tree | 4574f0268338b23a6f5833e9d5543e9e4070658a /src/otrlchatinterface.cpp | |
parent | 7ccc4240a55bfefedfdadbedef38deb5eb0128cb (diff) | |
download | kopete-otr-2a35cd2f709b2d6418b70f3ef999f204d1c48dc0.tar.gz kopete-otr-2a35cd2f709b2d6418b70f3ef999f204d1c48dc0.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/otrlchatinterface.cpp')
-rw-r--r-- | src/otrlchatinterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/otrlchatinterface.cpp b/src/otrlchatinterface.cpp index 74e1c92..3830a66 100644 --- a/src/otrlchatinterface.cpp +++ b/src/otrlchatinterface.cpp @@ -587,7 +587,7 @@ OtrlChatInterface::OtrlChatInterface(){ unsigned int interval = otrl_message_poll_get_default_interval(userstate); forwardSecrecyTimerStart(interval); - connect(&m_forwardSecrecyTimer, SIGNAL(timeout()), this, SLOT(otrlMessagePoll())); + connect(&m_forwardSecrecyTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(otrlMessagePoll())); #endif // HAVE_LIBOTR_0400 } |