1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02: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 Tomahawk;
using namespace Accounts; using namespace Accounts;
ZeroconfPlugin::ZeroconfPlugin ( ZeroconfAccount* parent ) ZeroconfPlugin::ZeroconfPlugin ( ZeroconfAccount* parent )
: SipPlugin( parent ) : SipPlugin( parent )
, m_zeroconf( 0 ) , m_zeroconf( 0 )
@@ -44,7 +45,11 @@ ZeroconfPlugin::ZeroconfPlugin ( ZeroconfAccount* parent )
connect( &m_advertisementTimer, SIGNAL( timeout() ), this, SLOT( advertise() ) ); connect( &m_advertisementTimer, SIGNAL( timeout() ), this, SLOT( advertise() ) );
} }
ZeroconfPlugin::~ZeroconfPlugin() {}
ZeroconfPlugin::~ZeroconfPlugin()
{
}
const QString const QString
ZeroconfPlugin::name() const ZeroconfPlugin::name() const
@@ -52,24 +57,28 @@ ZeroconfPlugin::name() const
return QString( MYNAME ); return QString( MYNAME );
} }
const QString const QString
ZeroconfPlugin::accountName() const ZeroconfPlugin::accountName() const
{ {
return QString( MYNAME ); return QString( MYNAME );
} }
const QString const QString
ZeroconfPlugin::serviceName() const ZeroconfPlugin::serviceName() const
{ {
return QString( MYNAME ); return QString( MYNAME );
} }
const QString const QString
ZeroconfPlugin::friendlyName() const ZeroconfPlugin::friendlyName() const
{ {
return QString( MYNAME ); return QString( MYNAME );
} }
Account::ConnectionState Account::ConnectionState
ZeroconfPlugin::connectionState() const ZeroconfPlugin::connectionState() const
{ {

View File

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