From 7b5a073c39fbd8ed38cceb54ecb8f7d60dd45878 Mon Sep 17 00:00:00 2001 From: Laurent Contzen Date: Tue, 7 Aug 2012 16:44:14 +0200 Subject: Removed now useless _get_top_individuals function in the model --- libempathy-gtk/empathy-roster-model.c | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'libempathy-gtk/empathy-roster-model.c') diff --git a/libempathy-gtk/empathy-roster-model.c b/libempathy-gtk/empathy-roster-model.c index 31cc4251f..269aba243 100644 --- a/libempathy-gtk/empathy-roster-model.c +++ b/libempathy-gtk/empathy-roster-model.c @@ -135,24 +135,3 @@ empathy_roster_model_get_groups_for_individual (EmpathyRosterModel *self, return (* iface->get_groups_for_individual) (self, individual); } - -/** - * empathy_roster_model_get_top_individuals: - * @self: a #EmpathyRosterModel - * - * Returns a list of the top_individuals. - * - * Returns: (transfer none): a #GList of #FolksIndividual - */ -GList * -empathy_roster_model_get_top_individuals (EmpathyRosterModel *self) -{ - EmpathyRosterModelInterface *iface; - - g_return_val_if_fail (EMPATHY_IS_ROSTER_MODEL (self), NULL); - - iface = EMPATHY_ROSTER_MODEL_GET_IFACE (self); - g_return_val_if_fail (iface->get_top_individuals != NULL, NULL); - - return (* iface->get_top_individuals) (self); -} -- cgit