summaryrefslogtreecommitdiffstats
path: root/src/otrguiclient.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 21:15:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-01 17:44:24 +0900
commite14ad764e72a351b46a7eb027da5c9eb476f532c (patch)
tree4574f0268338b23a6f5833e9d5543e9e4070658a /src/otrguiclient.cpp
parentedea0d8d7d83c5d04c98b6addc34f01a4cafc509 (diff)
downloadkopete-otr-e14ad764.tar.gz
kopete-otr-e14ad764.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 2a35cd2f709b2d6418b70f3ef999f204d1c48dc0)
Diffstat (limited to 'src/otrguiclient.cpp')
-rw-r--r--src/otrguiclient.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/otrguiclient.cpp b/src/otrguiclient.cpp
index 48dc193..c7a2b92 100644
--- a/src/otrguiclient.cpp
+++ b/src/otrguiclient.cpp
@@ -48,24 +48,24 @@ OtrGUIClient::OtrGUIClient( Kopete::ChatSession *parent, const char *name )
setInstance( OTRPlugin::plugin()->instance() );
connect( OTRPlugin::plugin(),
- TQT_SIGNAL( destroyed( TQObject * ) ), this,
- TQT_SLOT( deleteLater() )
+ TQ_SIGNAL( destroyed( TQObject * ) ), this,
+ TQ_SLOT( deleteLater() )
);
- connect(this, TQT_SIGNAL( signalOtrChatsession(Kopete::ChatSession*, bool) ), OTRPlugin::plugin(), TQT_SLOT(slotEnableOtr(Kopete::ChatSession*, bool)));
+ connect(this, TQ_SIGNAL( signalOtrChatsession(Kopete::ChatSession*, bool) ), OTRPlugin::plugin(), TQ_SLOT(slotEnableOtr(Kopete::ChatSession*, bool)));
- connect( OTRPlugin::plugin(), TQT_SIGNAL( goneSecure( Kopete::ChatSession *, int ) ),
- this, TQT_SLOT( encryptionEnabled( Kopete::ChatSession *, int ) ) );
+ connect( OTRPlugin::plugin(), TQ_SIGNAL( goneSecure( Kopete::ChatSession *, int ) ),
+ this, TQ_SLOT( encryptionEnabled( Kopete::ChatSession *, int ) ) );
- connect( this, TQT_SIGNAL( signalVerifyFingerprint( Kopete::ChatSession * ) ), OTRPlugin::plugin(), TQT_SLOT(slotVerifyFingerprint( Kopete::ChatSession * )) );
+ connect( this, TQ_SIGNAL( signalVerifyFingerprint( Kopete::ChatSession * ) ), OTRPlugin::plugin(), TQ_SLOT(slotVerifyFingerprint( Kopete::ChatSession * )) );
m_manager = parent;
otrActionMenu = new TDEActionMenu(i18n("OTR Settings"),"otr_disabled", actionCollection(), "otr_settings");
otrActionMenu->setDelayed( false );
- actionEnableOtr = new TDEAction(i18n( "Start OTR session" ), "otr_private", 0,this,TQT_SLOT(slotEnableOtr()),actionCollection(), "enable_otr");
- actionDisableOtr = new TDEAction(i18n("End OTR session"), "otr_disabled",0, this,TQT_SLOT(slotDisableOtr()), actionCollection(), "disable_otr");
- actionVerifyFingerprint = new TDEAction(i18n("Authenticate Contact"), "signature",0, this,TQT_SLOT(slotVerifyFingerprint()), actionCollection(), "verify_fingerprint");
+ actionEnableOtr = new TDEAction(i18n( "Start OTR session" ), "otr_private", 0,this,TQ_SLOT(slotEnableOtr()),actionCollection(), "enable_otr");
+ actionDisableOtr = new TDEAction(i18n("End OTR session"), "otr_disabled",0, this,TQ_SLOT(slotDisableOtr()), actionCollection(), "disable_otr");
+ actionVerifyFingerprint = new TDEAction(i18n("Authenticate Contact"), "signature",0, this,TQ_SLOT(slotVerifyFingerprint()), actionCollection(), "verify_fingerprint");
otrActionMenu->insert(actionEnableOtr);
otrActionMenu->insert(actionDisableOtr);