summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/nowlistening/nowlisteningguiclient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/plugins/nowlistening/nowlisteningguiclient.cpp')
-rw-r--r--kopete/plugins/nowlistening/nowlisteningguiclient.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/plugins/nowlistening/nowlisteningguiclient.cpp b/kopete/plugins/nowlistening/nowlisteningguiclient.cpp
index 8e7b1908..c5e47ef0 100644
--- a/kopete/plugins/nowlistening/nowlisteningguiclient.cpp
+++ b/kopete/plugins/nowlistening/nowlisteningguiclient.cpp
@@ -30,12 +30,12 @@
#include <kmessagebox.h>
NowListeningGUIClient::NowListeningGUIClient( Kopete::ChatSession *parent, NowListeningPlugin *plugin )
- : QObject(parent) , KXMLGUIClient(parent)
+ : TQObject(parent) , KXMLGUIClient(parent)
{
- connect(plugin, SIGNAL(readyForUnload()), SLOT(slotPluginUnloaded()));
+ connect(plugin, TQT_SIGNAL(readyForUnload()), TQT_SLOT(slotPluginUnloaded()));
m_msgManager = parent;
m_action = new KAction( i18n( "Send Media Info" ), 0, this,
- SLOT( slotAdvertToCurrentChat() ), actionCollection(), "actionSendAdvert" );
+ TQT_SLOT( slotAdvertToCurrentChat() ), actionCollection(), "actionSendAdvert" );
setXMLFile("nowlisteningchatui.rc");
}
@@ -47,13 +47,13 @@ void NowListeningGUIClient::slotAdvertToCurrentChat()
if (!NowListeningPlugin::plugin())
return;
- QString message = NowListeningPlugin::plugin()->mediaPlayerAdvert();
+ TQString message = NowListeningPlugin::plugin()->mediaPlayerAdvert();
// We warn in a mode appropriate to the mode the user invoked the
// plugin - GUI on menu action, in message if they typed '/media'
if ( message.isEmpty() )
{
- QWidget * origin = 0L;
+ TQWidget * origin = 0L;
if ( m_msgManager && m_msgManager->view() )
origin = m_msgManager->view()->mainWidget();
KMessageBox::queuedMessageBox( origin, KMessageBox::Sorry,