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

* Style cleanups.

This commit is contained in:
Christian Muehlhaeuser 2013-02-14 19:11:09 +01:00
parent 78e0475b9e
commit 176a9c8ce0
2 changed files with 10 additions and 2 deletions

View File

@ -32,6 +32,7 @@
using namespace Tomahawk;
using namespace Accounts;
ZeroconfPlugin::ZeroconfPlugin ( ZeroconfAccount* parent )
: SipPlugin( parent )
, m_zeroconf( 0 )
@ -44,7 +45,11 @@ ZeroconfPlugin::ZeroconfPlugin ( ZeroconfAccount* parent )
connect( &m_advertisementTimer, SIGNAL( timeout() ), this, SLOT( advertise() ) );
}
ZeroconfPlugin::~ZeroconfPlugin() {}
ZeroconfPlugin::~ZeroconfPlugin()
{
}
const QString
ZeroconfPlugin::name() const
@ -52,24 +57,28 @@ ZeroconfPlugin::name() const
return QString( MYNAME );
}
const QString
ZeroconfPlugin::accountName() const
{
return QString( MYNAME );
}
const QString
ZeroconfPlugin::serviceName() const
{
return QString( MYNAME );
}
const QString
ZeroconfPlugin::friendlyName() const
{
return QString( MYNAME );
}
Account::ConnectionState
ZeroconfPlugin::connectionState() const
{

View File

@ -38,7 +38,6 @@ PortFwdThread::PortFwdThread( unsigned int port )
PortFwdThread::~PortFwdThread()
{
}