static bool
on_visit_contacts (Ekiga::ContactPtr contact,
                   GtkListStore *store)
{
  on_contact_added (contact, store);
  return true;
}
Exemple #2
0
/* Implementation of the callbacks */
static bool
on_visit_contacts (Ekiga::ContactPtr contact,
		   gpointer data)
{
  on_contact_added (contact, data);
  return true;
}
static void
on_book_contact_added (Ekiga::ContactPtr contact,
                       CallHistoryViewGtk* self)
{
  GtkListStore *store = GTK_LIST_STORE (gtk_tree_view_get_model (self->priv->tree));

  on_contact_added (contact, store);
}