From 44472802c9c232f7ab6639af2e0a88b090016671 Mon Sep 17 00:00:00 2001 From: Laurent Contzen Date: Tue, 7 Aug 2012 16:28:21 +0200 Subject: Moved _contact_in_top from the model to the view empathy-roster-model and empathy-roster-model-manager: removed _contact_in_top empathy-roster-view: added new function contact_in_top and modified functions to use it --- libempathy-gtk/empathy-roster-model.c | 25 ------------------------- 1 file changed, 25 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 f1e596029..31cc4251f 100644 --- a/libempathy-gtk/empathy-roster-model.c +++ b/libempathy-gtk/empathy-roster-model.c @@ -156,28 +156,3 @@ empathy_roster_model_get_top_individuals (EmpathyRosterModel *self) return (* iface->get_top_individuals) (self); } - -/** - * empathy_roster_model_contact_in_top: - * @self: a #EmpathyRosterModel - * @contact: a #EmpathyRosterContact - * - * Checks if the passed #EmpathyRosterContact should be displayed in - * top contacts. - * - * Returns: %TRUE if it should be displayed in top contacts, %FALSE - * if not - */ -gboolean -empathy_roster_model_contact_in_top (EmpathyRosterModel *self, - EmpathyRosterContact *contact) -{ - EmpathyRosterModelInterface *iface; - - g_return_val_if_fail (EMPATHY_IS_ROSTER_MODEL (self), FALSE); - - iface = EMPATHY_ROSTER_MODEL_GET_IFACE (self); - g_return_val_if_fail (iface->contact_in_top != NULL, FALSE); - - return (* iface->contact_in_top) (self, contact); -} -- cgit v1.2.3