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

* Style fixes.

This commit is contained in:
Christian Muehlhaeuser
2013-05-04 06:09:31 +02:00
parent b1b4bbec97
commit 2558905891

View File

@@ -127,6 +127,7 @@ Source::setStats( const QVariantMap& m )
emit stateChanged(); emit stateChanged();
} }
QString QString
Source::nodeId() const Source::nodeId() const
{ {
@@ -134,6 +135,7 @@ Source::nodeId() const
} }
QString QString
Source::friendlyName() const Source::friendlyName() const
{ {
@@ -425,7 +427,7 @@ Source::onStateChanged( DBSyncConnection::State newstate, DBSyncConnection::Stat
unsigned int unsigned int
Source::trackCount() const Source::trackCount() const
{ {
return m_stats.value( "numfiles" ).toUInt(); return m_stats.value( "numfiles", 0 ).toUInt();
} }