mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-06 14:16:32 +02:00
Move Source::nodeId() implementation into cpp file
This commit is contained in:
@@ -120,6 +120,12 @@ Source::setStats( const QVariantMap& m )
|
|||||||
emit stateChanged();
|
emit stateChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString
|
||||||
|
Source::nodeId() const
|
||||||
|
{
|
||||||
|
return m_nodeId;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
QString
|
QString
|
||||||
Source::friendlyName() const
|
Source::friendlyName() const
|
||||||
|
@@ -61,7 +61,7 @@ public:
|
|||||||
bool isLocal() const { return m_isLocal; }
|
bool isLocal() const { return m_isLocal; }
|
||||||
bool isOnline() const { return m_online || m_isLocal; }
|
bool isOnline() const { return m_online || m_isLocal; }
|
||||||
|
|
||||||
QString nodeId() const { return m_nodeId; }
|
QString nodeId() const;
|
||||||
|
|
||||||
QString friendlyName() const;
|
QString friendlyName() const;
|
||||||
void setFriendlyName( const QString& fname );
|
void setFriendlyName( const QString& fname );
|
||||||
|
Reference in New Issue
Block a user