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

Move Source::nodeId() implementation into cpp file

This commit is contained in:
Dominik Schmidt 2013-01-28 17:13:05 +01:00
parent 009c06f693
commit 6dc053a91f
2 changed files with 7 additions and 1 deletions

View File

@ -120,6 +120,12 @@ Source::setStats( const QVariantMap& m )
emit stateChanged();
}
QString
Source::nodeId() const
{
return m_nodeId;
}
QString
Source::friendlyName() const

View File

@ -61,7 +61,7 @@ public:
bool isLocal() const { return m_isLocal; }
bool isOnline() const { return m_online || m_isLocal; }
QString nodeId() const { return m_nodeId; }
QString nodeId() const;
QString friendlyName() const;
void setFriendlyName( const QString& fname );