diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:03:45 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:03:45 -0600 |
commit | b90b805733bdb1846e6058f7b065f5f886d7e203 (patch) | |
tree | 3c3c8f857822141d89e8fc6ad079048ef37908b8 /src/otrguiclient.cpp | |
parent | 401ba79d4ebd0e7757a29867027bfc3afb7c269c (diff) | |
download | kopete-otr-b90b805733bdb1846e6058f7b065f5f886d7e203.tar.gz kopete-otr-b90b805733bdb1846e6058f7b065f5f886d7e203.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'src/otrguiclient.cpp')
-rw-r--r-- | src/otrguiclient.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/otrguiclient.cpp b/src/otrguiclient.cpp index 0460551..3182898 100644 --- a/src/otrguiclient.cpp +++ b/src/otrguiclient.cpp @@ -58,11 +58,11 @@ OtrGUIClient::OtrGUIClient( Kopete::ChatSession *parent, const char *name ) connect( this, TQT_SIGNAL( signalVerifyFingerprint( Kopete::ChatSession * ) ), OTRPlugin::plugin(), TQT_SLOT(slotVerifyFingerprint( Kopete::ChatSession * )) ); m_manager = parent; - otrActionMenu = new KActionMenu(i18n("OTR Settings"),"otr_disabled", actionCollection(), "otr_settings"); + otrActionMenu = new TDEActionMenu(i18n("OTR Settings"),"otr_disabled", actionCollection(), "otr_settings"); otrActionMenu->setDelayed( false ); - actionEnableOtr = new KAction(i18n( "Start OTR session" ), "otr_private", 0,this,TQT_SLOT(slotEnableOtr()),actionCollection(), "enable_otr"); - actionDisableOtr = new KAction(i18n("End OTR session"), "otr_disabled",0, this,TQT_SLOT(slotDisableOtr()), actionCollection(), "disable_otr"); - actionVerifyFingerprint = new KAction(i18n("Authenticate Contact"), "signature",0, this,TQT_SLOT(slotVerifyFingerprint()), actionCollection(), "verify_fingerprint"); + 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"); otrActionMenu->insert(actionEnableOtr); otrActionMenu->insert(actionDisableOtr); |