mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-01 03:40:16 +02:00
Add const to arguments in getLocalSipInfos
This commit is contained in:
@@ -348,7 +348,7 @@ Servent::lookupControlConnection( const SipInfo& sipInfo )
|
|||||||
|
|
||||||
|
|
||||||
QList<SipInfo>
|
QList<SipInfo>
|
||||||
Servent::getLocalSipInfos( const QString& nodeid, QString key )
|
Servent::getLocalSipInfos( const QString& nodeid, const QString& key )
|
||||||
{
|
{
|
||||||
QList<SipInfo> sipInfos = QList<SipInfo>();
|
QList<SipInfo> sipInfos = QList<SipInfo>();
|
||||||
foreach ( QHostAddress ha, m_externalAddresses )
|
foreach ( QHostAddress ha, m_externalAddresses )
|
||||||
|
@@ -130,7 +130,7 @@ public:
|
|||||||
|
|
||||||
bool isReady() const { return m_ready; }
|
bool isReady() const { return m_ready; }
|
||||||
|
|
||||||
QList<SipInfo> getLocalSipInfos(const QString& nodeid, QString key);
|
QList<SipInfo> getLocalSipInfos(const QString& nodeid, const QString &key);
|
||||||
signals:
|
signals:
|
||||||
void dbSyncTriggered();
|
void dbSyncTriggered();
|
||||||
void streamStarted( StreamConnection* );
|
void streamStarted( StreamConnection* );
|
||||||
|
Reference in New Issue
Block a user