diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-12 20:42:40 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-12 20:42:40 +0800 |
commit | 0e956cfcf66b23bd359c4fefbabd7288c1d2bd5d (patch) | |
tree | ebd8339b7ceb24db21fe736a6bb136d7cd709f5e /libempathy-gtk/empathy-roster-model.h | |
parent | 616f55e491686779b760b0726f237f13f36ccdbb (diff) | |
download | gsoc2013-empathy-0e956cfcf66b23bd359c4fefbabd7288c1d2bd5d.tar gsoc2013-empathy-0e956cfcf66b23bd359c4fefbabd7288c1d2bd5d.tar.gz gsoc2013-empathy-0e956cfcf66b23bd359c4fefbabd7288c1d2bd5d.tar.bz2 gsoc2013-empathy-0e956cfcf66b23bd359c4fefbabd7288c1d2bd5d.tar.lz gsoc2013-empathy-0e956cfcf66b23bd359c4fefbabd7288c1d2bd5d.tar.xz gsoc2013-empathy-0e956cfcf66b23bd359c4fefbabd7288c1d2bd5d.tar.zst gsoc2013-empathy-0e956cfcf66b23bd359c4fefbabd7288c1d2bd5d.zip |
rename empathy_roster_model_get_groups_for_individual() to _dup_
It matches tp-glib naming convention now that the returned list is (transfer
full).
Diffstat (limited to 'libempathy-gtk/empathy-roster-model.h')
-rw-r--r-- | libempathy-gtk/empathy-roster-model.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-roster-model.h b/libempathy-gtk/empathy-roster-model.h index dd8288eca..27c5482f3 100644 --- a/libempathy-gtk/empathy-roster-model.h +++ b/libempathy-gtk/empathy-roster-model.h @@ -40,7 +40,7 @@ struct _EmpathyRosterModelInterface /* Virtual table */ GList * (* get_individuals) (EmpathyRosterModel *self); - GList * (*get_groups_for_individual) (EmpathyRosterModel *self, + GList * (*dup_groups_for_individual) (EmpathyRosterModel *self, FolksIndividual *individual); }; @@ -77,7 +77,7 @@ void empathy_roster_model_fire_groups_changed (EmpathyRosterModel *self, /* Public API */ GList * empathy_roster_model_get_individuals (EmpathyRosterModel *self); -GList * empathy_roster_model_get_groups_for_individual ( +GList * empathy_roster_model_dup_groups_for_individual ( EmpathyRosterModel *self, FolksIndividual *individual); |