diff options
author | Travis Reitter <travis.reitter@collabora.co.uk> | 2011-03-11 13:46:49 +0800 |
---|---|---|
committer | Travis Reitter <travis.reitter@collabora.co.uk> | 2011-03-15 02:46:52 +0800 |
commit | 07434728e84556fd321ea4a38f828035803ee76b (patch) | |
tree | a651288af35cb793be520ea7fa2687efdcca830e /libempathy-gtk/empathy-individual-widget.c | |
parent | 04358054e19cdd50364afd1f51cb315b132cf1f7 (diff) | |
download | gsoc2013-empathy-07434728e84556fd321ea4a38f828035803ee76b.tar gsoc2013-empathy-07434728e84556fd321ea4a38f828035803ee76b.tar.gz gsoc2013-empathy-07434728e84556fd321ea4a38f828035803ee76b.tar.bz2 gsoc2013-empathy-07434728e84556fd321ea4a38f828035803ee76b.tar.lz gsoc2013-empathy-07434728e84556fd321ea4a38f828035803ee76b.tar.xz gsoc2013-empathy-07434728e84556fd321ea4a38f828035803ee76b.tar.zst gsoc2013-empathy-07434728e84556fd321ea4a38f828035803ee76b.zip |
Adjust for Folks Favouritable -> FavouriteDetails rename
Helps bgo#644470 - Empathy needs to catch up with Folks interface name change
(API/ABI breaks)
Diffstat (limited to 'libempathy-gtk/empathy-individual-widget.c')
-rw-r--r-- | libempathy-gtk/empathy-individual-widget.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy-gtk/empathy-individual-widget.c b/libempathy-gtk/empathy-individual-widget.c index c2956b149..8148af453 100644 --- a/libempathy-gtk/empathy-individual-widget.c +++ b/libempathy-gtk/empathy-individual-widget.c @@ -1145,8 +1145,8 @@ favourite_toggled_cb (GtkToggleButton *button, EmpathyIndividualWidget *self) { gboolean active = gtk_toggle_button_get_active (button); - folks_favouritable_set_is_favourite ( - FOLKS_FAVOURITABLE (GET_PRIV (self)->individual), active); + folks_favourite_details_set_is_favourite ( + FOLKS_FAVOURITE_DETAILS (GET_PRIV (self)->individual), active); } static void @@ -1288,8 +1288,8 @@ notify_is_favourite_cb (gpointer folks_object, if (GTK_IS_TOGGLE_BUTTON (favourite_widget)) { gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (favourite_widget), - folks_favouritable_get_is_favourite ( - FOLKS_FAVOURITABLE (folks_object))); + folks_favourite_details_get_is_favourite ( + FOLKS_FAVOURITE_DETAILS (folks_object))); } } |