1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-05 08:32:42 +02:00

Fix style.

This commit is contained in:
John Maguire 2011-03-11 22:17:08 +01:00 committed by Leo Franchi
parent 991269e5d9
commit 7d13c56081
2 changed files with 3 additions and 3 deletions

View File

@ -151,8 +151,8 @@ Jabber_p::go()
if( m_client->connect( false ) )
{
int sock = static_cast<ConnectionTCPClient*>( m_client->connectionImpl() )->socket();
notifier_.reset( new QSocketNotifier( sock, QSocketNotifier::Read ) );
connect( notifier_.data(), SIGNAL(activated(int)), SLOT(doJabberRecv()));
m_notifier.reset( new QSocketNotifier( sock, QSocketNotifier::Read ) );
connect( m_notifier.data(), SIGNAL( activated(int) ), SLOT( doJabberRecv() ));
}
else
qDebug() << "Could not connect to the XMPP server!";

View File

@ -139,7 +139,7 @@ private:
QMap<QString, gloox::Presence::PresenceType> m_peers;
QSharedPointer<gloox::VCardManager> m_vcardManager;
QString m_server;
QScopedPointer<QSocketNotifier> notifier_;
QScopedPointer<QSocketNotifier> m_notifier;
};
#endif // JABBER_H