Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 430474
Collapse All | Expand All

(-)ekiga-3.2.7_orig/lib/engine/account/bank-impl.h (-1 / +1 lines)
Lines 212-218 Link Here
212
void
212
void
213
Ekiga::BankImpl<AccountType>::add_account (gmref_ptr<AccountType> account)
213
Ekiga::BankImpl<AccountType>::add_account (gmref_ptr<AccountType> account)
214
{
214
{
215
  add_object (account);
215
  this->add_object (account);
216
216
217
  account->questions.add_handler (questions.make_slot ());
217
  account->questions.add_handler (questions.make_slot ());
218
  account->registration_event.connect (sigc::bind (sigc::mem_fun (this, &Ekiga::BankImpl<AccountType>::on_registration_event), account));
218
  account->registration_event.connect (sigc::bind (sigc::mem_fun (this, &Ekiga::BankImpl<AccountType>::on_registration_event), account));
(-)ekiga-3.2.7_orig/lib/engine/addressbook/book-impl.h (-1 / +1 lines)
Lines 204-210 Link Here
204
Ekiga::BookImpl<ContactType>::add_contact (gmref_ptr<ContactType> contact)
204
Ekiga::BookImpl<ContactType>::add_contact (gmref_ptr<ContactType> contact)
205
{
205
{
206
  contact->questions.add_handler (questions.make_slot ());
206
  contact->questions.add_handler (questions.make_slot ());
207
  add_object (contact);
207
  this->add_object (contact);
208
}
208
}
209
209
210
210
(-)ekiga-3.2.7_orig/lib/engine/addressbook/source-impl.h (-1 / +1 lines)
Lines 206-212 Link Here
206
void
206
void
207
Ekiga::SourceImpl<BookType>::add_book (gmref_ptr<BookType> book)
207
Ekiga::SourceImpl<BookType>::add_book (gmref_ptr<BookType> book)
208
{
208
{
209
  add_object (book);
209
  this->add_object (book);
210
210
211
  add_connection (book, book->contact_added.connect (sigc::bind<0> (contact_added.make_slot (), book)));
211
  add_connection (book, book->contact_added.connect (sigc::bind<0> (contact_added.make_slot (), book)));
212
212
(-)ekiga-3.2.7_orig/lib/engine/presence/cluster-impl.h (-1 / +1 lines)
Lines 147-153 Link Here
147
147
148
  add_connection (heap, heap->questions.add_handler (questions.make_slot ()));
148
  add_connection (heap, heap->questions.add_handler (questions.make_slot ()));
149
149
150
  add_object (heap);
150
  this->add_object (heap);
151
}
151
}
152
152
153
template<typename HeapType>
153
template<typename HeapType>
(-)ekiga-3.2.7_orig/lib/engine/presence/heap-impl.h (-1 / +1 lines)
Lines 160-166 Link Here
160
{
160
{
161
  presentity->questions.add_handler (questions.make_slot ());
161
  presentity->questions.add_handler (questions.make_slot ());
162
162
163
  add_object (presentity);
163
  this->add_object (presentity);
164
}
164
}
165
165
166
template<typename PresentityType>
166
template<typename PresentityType>

Return to bug 430474