diff options
author | Philip Withnall <philip.withnall@collabora.co.uk> | 2010-09-15 22:23:14 +0800 |
---|---|---|
committer | Travis Reitter <travis.reitter@collabora.co.uk> | 2010-10-05 00:02:09 +0800 |
commit | 53aa7c1e6546214568969fe727926f7740a26127 (patch) | |
tree | c5f83e4ad2a0ec37b05de040f1a6c000052c7665 /libempathy-gtk/empathy-individual-widget.c | |
parent | 3195780450fdcfe8678bf29e5fd20cb957283bc2 (diff) | |
download | gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar.gz gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar.bz2 gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar.lz gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar.xz gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.tar.zst gsoc2013-empathy-53aa7c1e6546214568969fe727926f7740a26127.zip |
Port Empathy to use FolksAliasable and FolksGroupable
FolksAliasable is the new name for FolksAlias, and FolksGroupable
is the new name for FolksGroups.
Diffstat (limited to 'libempathy-gtk/empathy-individual-widget.c')
-rw-r--r-- | libempathy-gtk/empathy-individual-widget.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libempathy-gtk/empathy-individual-widget.c b/libempathy-gtk/empathy-individual-widget.c index f30343638..4feda728b 100644 --- a/libempathy-gtk/empathy-individual-widget.c +++ b/libempathy-gtk/empathy-individual-widget.c @@ -436,7 +436,7 @@ groups_update (EmpathyIndividualWidget *self) { empathy_groups_widget_set_groupable ( EMPATHY_GROUPS_WIDGET (priv->groups_widget), - FOLKS_GROUPS (priv->individual)); + FOLKS_GROUPABLE (priv->individual)); gtk_widget_show (priv->groups_widget); } else @@ -760,8 +760,8 @@ location_update (EmpathyIndividualWidget *self) /* Add a marker to the map */ marker = champlain_marker_new_with_text ( - folks_alias_get_alias (FOLKS_ALIAS (persona)), NULL, NULL, - NULL); + folks_aliasable_get_alias (FOLKS_ALIASABLE (persona)), NULL, + NULL, NULL); champlain_base_marker_set_position ( CHAMPLAIN_BASE_MARKER (marker), lat, lon); clutter_container_add (CLUTTER_CONTAINER (layer), marker, NULL); @@ -1057,7 +1057,7 @@ entry_alias_focus_event_cb (GtkEditable *editable, } else { - folks_alias_set_alias (FOLKS_ALIAS (priv->individual), alias); + folks_aliasable_set_alias (FOLKS_ALIASABLE (priv->individual), alias); } } @@ -1132,12 +1132,12 @@ notify_alias_cb (gpointer folks_object, if (GTK_IS_ENTRY (alias_widget)) { gtk_entry_set_text (GTK_ENTRY (alias_widget), - folks_alias_get_alias (FOLKS_ALIAS (folks_object))); + folks_aliasable_get_alias (FOLKS_ALIASABLE (folks_object))); } else { gtk_label_set_label (GTK_LABEL (alias_widget), - folks_alias_get_alias (FOLKS_ALIAS (folks_object))); + folks_aliasable_get_alias (FOLKS_ALIASABLE (folks_object))); } } |