1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

Properly init PeerInfo in its ctor

This commit is contained in:
Dominik Schmidt 2013-01-13 17:17:09 +01:00
parent 352dd7588d
commit 80900a546d

@ -70,11 +70,12 @@ PeerInfo::getAll()
PeerInfo::PeerInfo( SipPlugin* parent, const QString& id )
: QObject( parent )
, m_type( External )
, m_id( id )
, m_status( Offline )
, m_avatar( 0 )
, m_fancyAvatar( 0 )
, m_avatarUpdated( true )
{
m_id = id;
}