summaryrefslogtreecommitdiffstats
path: root/src/otrguiclient.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commitcc685f712832a40b1fdb15ea338a82462f96a7f7 (patch)
tree7a34e86186e72191b649f40de942f345afc64e75 /src/otrguiclient.cpp
parent329367edf66fec19f8a9de843cf3319fbe187b99 (diff)
downloadkopete-otr-cc685f712832a40b1fdb15ea338a82462f96a7f7.tar.gz
kopete-otr-cc685f712832a40b1fdb15ea338a82462f96a7f7.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kopete-otr@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/otrguiclient.cpp')
-rw-r--r--src/otrguiclient.cpp8
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) );
}