1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-18 23:09:42 +01:00

I wish Jreen would properly namespace their signals/slots.

This commit is contained in:
Jeff Mitchell 2012-01-23 06:49:05 -05:00
parent ff9074421a
commit 783893f750

View File

@ -52,6 +52,7 @@
#include <utils/tomahawkutilsgui.h>
#include "utils/logger.h"
using namespace Jreen;
SipPlugin*
JabberFactory::createPlugin( const QString& pluginId )
@ -232,7 +233,7 @@ JabberPlugin::connectPlugin( bool startup )
QTimer::singleShot( 1000, m_client, SLOT( connectToServer() ) );
if ( m_client->connection() )
connect(m_client->connection(), SIGNAL(error(Jreen::Connection::SocketError)), SLOT(onError(Jreen::Connection::SocketError)));
connect(m_client->connection(), SIGNAL(error(SocketError)), SLOT(onError(SocketError)));
m_state = Connecting;
emit stateChanged( m_state );