diff options
Diffstat (limited to 'kopete/protocols/testbed/testbedcontact.cpp')
-rw-r--r-- | kopete/protocols/testbed/testbedcontact.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kopete/protocols/testbed/testbedcontact.cpp b/kopete/protocols/testbed/testbedcontact.cpp index b53c4adb..7195f7bc 100644 --- a/kopete/protocols/testbed/testbedcontact.cpp +++ b/kopete/protocols/testbed/testbedcontact.cpp @@ -74,9 +74,9 @@ Kopete::ChatSession* TestbedContact::manager( CanCreateFlags ) TQPtrList<Kopete::Contact> contacts; contacts.append(this); m_msgManager = Kopete::ChatSessionManager::self()->create(account()->myself(), contacts, protocol()); - connect(m_msgManager, TQT_SIGNAL(messageSent(Kopete::Message&, Kopete::ChatSession*)), - this, TQT_SLOT( sendMessage( Kopete::Message& ) ) ); - connect(m_msgManager, TQT_SIGNAL(destroyed()), this, TQT_SLOT(slotChatSessionDestroyed())); + connect(m_msgManager, TQ_SIGNAL(messageSent(Kopete::Message&, Kopete::ChatSession*)), + this, TQ_SLOT( sendMessage( Kopete::Message& ) ) ); + connect(m_msgManager, TQ_SIGNAL(destroyed()), this, TQ_SLOT(slotChatSessionDestroyed())); return m_msgManager; } } @@ -87,7 +87,7 @@ TQPtrList<TDEAction> *TestbedContact::customContextMenuActions() //OBSOLETE //FIXME!!! this function is obsolete, we should use XMLGUI instead /*m_actionCollection = new TDEActionCollection( this, "userColl" ); m_actionPrefs = new TDEAction(i18n( "&Contact Settings" ), 0, this, - TQT_SLOT( showContactSettings( )), m_actionCollection, "contactSettings" ); + TQ_SLOT( showContactSettings( )), m_actionCollection, "contactSettings" ); return m_actionCollection;*/ return 0L; |