[ekiga] Avahi: Ported to the interfaces related API change.
- From: Damien Sandras <dsandras src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ekiga] Avahi: Ported to the interfaces related API change.
- Date: Sun, 11 Jan 2015 13:07:38 +0000 (UTC)
commit ead2231584090fa09597c9950fc99dab69b09cc9
Author: Damien Sandras <dsandras seconix com>
Date: Sun Jan 11 13:46:43 2015 +0100
Avahi: Ported to the interfaces related API change.
plugins/avahi/avahi-publisher.cpp | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/plugins/avahi/avahi-publisher.cpp b/plugins/avahi/avahi-publisher.cpp
index 9ebe44c..f3c64d9 100644
--- a/plugins/avahi/avahi-publisher.cpp
+++ b/plugins/avahi/avahi-publisher.cpp
@@ -92,7 +92,7 @@ Avahi::PresencePublisher::publish (G_GNUC_UNUSED const Ekiga::PersonalDetails& d
{
if (group != NULL) {
- Ekiga::CallManager::InterfaceList interfaces;
+ Ekiga::CallProtocolManager::InterfaceList interfaces;
AvahiStringList* txt_record = NULL;
txt_record = prepare_txt_record ();
@@ -100,12 +100,12 @@ Avahi::PresencePublisher::publish (G_GNUC_UNUSED const Ekiga::PersonalDetails& d
iter != call_core.end ();
++iter) {
- Ekiga::CallManager::InterfaceList ints = (*iter)->get_interfaces ();
+ Ekiga::CallProtocolManager::InterfaceList ints = (*iter)->get_interfaces ();
interfaces.insert (interfaces.begin (), ints.begin (), ints.end ());
}
- for (Ekiga::CallManager::InterfaceList::const_iterator iter = interfaces.begin ();
+ for (Ekiga::CallProtocolManager::InterfaceList::const_iterator iter = interfaces.begin ();
iter != interfaces.end ();
++iter) {
@@ -237,21 +237,21 @@ Avahi::PresencePublisher::entry_group_callback (AvahiEntryGroup* group_,
void
Avahi::PresencePublisher::add_services ()
{
- Ekiga::CallManager::InterfaceList interfaces;
+ Ekiga::CallProtocolManager::InterfaceList interfaces;
AvahiStringList* txt_record = NULL;
for (Ekiga::CallCore::const_iterator iter = call_core.begin ();
iter != call_core.end ();
++iter) {
- Ekiga::CallManager::InterfaceList ints = (*iter)->get_interfaces ();
+ Ekiga::CallProtocolManager::InterfaceList ints = (*iter)->get_interfaces ();
interfaces.insert (interfaces.begin (), ints.begin (), ints.end ());
}
txt_record = prepare_txt_record ();
- for (Ekiga::CallManager::InterfaceList::const_iterator iter = interfaces.begin ();
+ for (Ekiga::CallProtocolManager::InterfaceList::const_iterator iter = interfaces.begin ();
iter != interfaces.end ();
++iter) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]