File ekiga-gcc47.patch of Package ekiga
--- ekiga-3.3.2-orig/lib/engine/account/bank-impl.h 2011-05-18 18:18:09.000000000 +0200
+++ ekiga-3.3.2/lib/engine/account/bank-impl.h 2012-05-19 02:55:49.522166765 +0200
@@ -203,7 +203,7 @@
void
Ekiga::BankImpl<AccountType>::add_account (boost::shared_ptr<AccountType> account)
{
- add_object (account);
+ this->add_object (account);
account->questions.connect (boost::ref (questions));
}
--- ekiga-3.3.2-orig/lib/engine/addressbook/book-impl.h 2011-05-18 18:18:09.000000000 +0200
+++ ekiga-3.3.2/lib/engine/addressbook/book-impl.h 2012-05-19 03:25:13.399895033 +0200
@@ -204,7 +204,7 @@
Ekiga::BookImpl<ContactType>::add_contact (boost::shared_ptr<ContactType> contact)
{
contact->questions.connect (boost::ref (questions));
- add_object (contact);
+ this->add_object (contact);
}
--- ekiga-3.3.2-orig/lib/engine/addressbook/source-impl.h 2011-05-18 18:18:09.000000000 +0200
+++ ekiga-3.3.2/lib/engine/addressbook/source-impl.h 2012-05-19 03:29:22.042816967 +0200
@@ -206,7 +206,7 @@
void
Ekiga::SourceImpl<BookType>::add_book (boost::shared_ptr<BookType> book)
{
- add_object (book);
+ this->add_object (book);
add_connection (book, book->contact_added.connect (boost::bind (boost::ref (contact_added), book, _1)));
--- ekiga-3.3.2-orig/lib/engine/presence/cluster-impl.h 2011-05-18 18:18:09.000000000 +0200
+++ ekiga-3.3.2/lib/engine/presence/cluster-impl.h 2012-05-19 10:55:55.285678629 +0200
@@ -147,7 +147,7 @@
add_connection (heap, heap->questions.connect (boost::ref (questions)));
- add_object (heap);
+ this->add_object (heap);
}
template<typename HeapType>
--- ekiga-3.3.2-orig/lib/engine/presence/heap-impl.h 2011-05-18 18:18:09.000000000 +0200
+++ ekiga-3.3.2/lib/engine/presence/heap-impl.h 2012-05-19 10:58:31.084509503 +0200
@@ -160,7 +160,7 @@
{
presentity->questions.connect (boost::ref (questions));
- add_object (presentity);
+ this->add_object (presentity);
}
template<typename PresentityType>