diff options
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 00d36e3..0460551 100644 --- a/src/otrguiclient.cpp +++ b/src/otrguiclient.cpp @@ -39,8 +39,8 @@ */ -OtrGUIClient::OtrGUIClient( Kopete::ChatSession *tqparent, const char *name ) -: TQObject( tqparent, name ), KXMLGUIClient( tqparent ) +OtrGUIClient::OtrGUIClient( Kopete::ChatSession *parent, const char *name ) +: TQObject( parent, name ), KXMLGUIClient( parent ) { setInstance( OTRPlugin::plugin()->instance() ); @@ -57,7 +57,7 @@ OtrGUIClient::OtrGUIClient( Kopete::ChatSession *tqparent, const char *name ) connect( this, TQT_SIGNAL( signalVerifyFingerprint( Kopete::ChatSession * ) ), OTRPlugin::plugin(), TQT_SLOT(slotVerifyFingerprint( Kopete::ChatSession * )) ); - m_manager = tqparent; + m_manager = parent; otrActionMenu = new KActionMenu(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"); @@ -70,7 +70,7 @@ OtrGUIClient::OtrGUIClient( Kopete::ChatSession *tqparent, const char *name ) setXMLFile("otrchatui.rc"); - encryptionEnabled( tqparent, OtrlChatInterface::self()->privState(tqparent) ); + encryptionEnabled( parent, OtrlChatInterface::self()->privState(parent) ); } |