aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-individual-widget.c
diff options
context:
space:
mode:
authorTravis Reitter <travis.reitter@collabora.co.uk>2011-03-11 13:12:13 +0800
committerTravis Reitter <travis.reitter@collabora.co.uk>2011-03-15 02:46:52 +0800
commit36eb0b9dec61bd0040161535f27fc4bbbd4511ca (patch)
tree5e698239030d729066fe7063a7350b8d7d2faf6b /libempathy-gtk/empathy-individual-widget.c
parent5751c344bd2783df6086b427ebcebdff9a77e63c (diff)
downloadgsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar
gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar.gz
gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar.bz2
gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar.lz
gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar.xz
gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.tar.zst
gsoc2013-empathy-36eb0b9dec61bd0040161535f27fc4bbbd4511ca.zip
Adjust for Folks Aliasable -> AliasDetails 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.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-individual-widget.c b/libempathy-gtk/empathy-individual-widget.c
index 51e6a534e..c2956b149 100644
--- a/libempathy-gtk/empathy-individual-widget.c
+++ b/libempathy-gtk/empathy-individual-widget.c
@@ -791,8 +791,8 @@ location_update (EmpathyIndividualWidget *self)
/* Add a marker to the map */
marker = champlain_label_new_with_text (
- folks_aliasable_get_alias (FOLKS_ALIASABLE (persona)), NULL,
- NULL, NULL);
+ folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (persona)),
+ NULL, NULL, NULL);
champlain_location_set_location (CHAMPLAIN_LOCATION (marker),
lat, lon);
champlain_marker_layer_add_marker (layer,
@@ -1132,7 +1132,8 @@ entry_alias_focus_event_cb (GtkEditable *editable,
}
else
{
- folks_aliasable_set_alias (FOLKS_ALIASABLE (priv->individual), alias);
+ folks_alias_details_set_alias (FOLKS_ALIAS_DETAILS (priv->individual),
+ alias);
}
}
@@ -1207,12 +1208,12 @@ notify_alias_cb (gpointer folks_object,
if (GTK_IS_ENTRY (alias_widget))
{
gtk_entry_set_text (GTK_ENTRY (alias_widget),
- folks_aliasable_get_alias (FOLKS_ALIASABLE (folks_object)));
+ folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (folks_object)));
}
else
{
gtk_label_set_label (GTK_LABEL (alias_widget),
- folks_aliasable_get_alias (FOLKS_ALIASABLE (folks_object)));
+ folks_alias_details_get_alias (FOLKS_ALIAS_DETAILS (folks_object)));
}
}