mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-07-31 11:20:22 +02:00
Rename sipInfoList to sipInfo
This commit is contained in:
@@ -435,7 +435,7 @@ XmppSipPlugin::errorMessage( Jreen::Client::DisconnectReason reason )
|
|||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
XmppSipPlugin::sendSipInfoList( const Tomahawk::peerinfo_ptr& receiver, const QList<SipInfo>& info )
|
XmppSipPlugin::sendSipInfo( const Tomahawk::peerinfo_ptr& receiver, const QList<SipInfo>& info )
|
||||||
{
|
{
|
||||||
tDebug( LOGVERBOSE ) << Q_FUNC_INFO << receiver << info;
|
tDebug( LOGVERBOSE ) << Q_FUNC_INFO << receiver << info;
|
||||||
|
|
||||||
|
@@ -90,7 +90,7 @@ public slots:
|
|||||||
virtual void configurationChanged();
|
virtual void configurationChanged();
|
||||||
virtual void addContact( const QString& peerId, const QString& msg = QString() );
|
virtual void addContact( const QString& peerId, const QString& msg = QString() );
|
||||||
|
|
||||||
virtual void sendSipInfoList( const Tomahawk::peerinfo_ptr& receiver, const QList<SipInfo>& info );
|
virtual void sendSipInfo( const Tomahawk::peerinfo_ptr& receiver, const QList<SipInfo>& info );
|
||||||
|
|
||||||
void showAddFriendDialog();
|
void showAddFriendDialog();
|
||||||
void publishTune( const QUrl& url, const Tomahawk::InfoSystem::InfoStringHash& trackInfo );
|
void publishTune( const QUrl& url, const Tomahawk::InfoSystem::InfoStringHash& trackInfo );
|
||||||
|
@@ -65,7 +65,7 @@ public slots:
|
|||||||
|
|
||||||
void advertise();
|
void advertise();
|
||||||
|
|
||||||
virtual void sendSipInfoList( const Tomahawk::peerinfo_ptr& receiver, const QList<SipInfo>& info ) {}
|
virtual void sendSipInfo( const Tomahawk::peerinfo_ptr& receiver, const QList<SipInfo>& info ) {}
|
||||||
void broadcastMsg( const QString & ) {}
|
void broadcastMsg( const QString & ) {}
|
||||||
void addContact( const QString &, const QString& ) {}
|
void addContact( const QString &, const QString& ) {}
|
||||||
|
|
||||||
|
@@ -204,7 +204,7 @@ PeerInfo::sipPlugin() const
|
|||||||
void
|
void
|
||||||
PeerInfo::sendLocalSipInfo( const QList<SipInfo>& sipInfoList )
|
PeerInfo::sendLocalSipInfo( const QList<SipInfo>& sipInfoList )
|
||||||
{
|
{
|
||||||
sipPlugin()->sendSipInfoList( weakRef().toStrongRef(), sipInfoList );
|
sipPlugin()->sendSipInfo( weakRef().toStrongRef(), sipInfoList );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -71,7 +71,7 @@ public slots:
|
|||||||
|
|
||||||
virtual void addContact( const QString& peerId, const QString& msg = QString() ) = 0;
|
virtual void addContact( const QString& peerId, const QString& msg = QString() ) = 0;
|
||||||
//! Send a list of SipInfos to all contacts.
|
//! Send a list of SipInfos to all contacts.
|
||||||
virtual void sendSipInfoList( const Tomahawk::peerinfo_ptr& receiver, const QList<SipInfo>& info ) = 0;
|
virtual void sendSipInfo( const Tomahawk::peerinfo_ptr& receiver, const QList<SipInfo>& info ) = 0;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void peerStatusChanged( const Tomahawk::peerinfo_ptr& );
|
void peerStatusChanged( const Tomahawk::peerinfo_ptr& );
|
||||||
|
Reference in New Issue
Block a user