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:
parent
991269e5d9
commit
7d13c56081
@ -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!";
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user