diff options
author | Philip Withnall <philip@tecnocode.co.uk> | 2010-11-13 22:07:46 +0800 |
---|---|---|
committer | Philip Withnall <philip@tecnocode.co.uk> | 2010-11-13 22:31:09 +0800 |
commit | ff49ee828e63dd35b5c4faf3a0ccd962c7cd63a8 (patch) | |
tree | 56f2447db1433c54917c68eddb56501e55a8a062 /libempathy-gtk/empathy-linking-dialog.c | |
parent | 2b1e108d1d4f19249c3fe666503e86df0da720dd (diff) | |
download | gsoc2013-empathy-ff49ee828e63dd35b5c4faf3a0ccd962c7cd63a8.tar gsoc2013-empathy-ff49ee828e63dd35b5c4faf3a0ccd962c7cd63a8.tar.gz gsoc2013-empathy-ff49ee828e63dd35b5c4faf3a0ccd962c7cd63a8.tar.bz2 gsoc2013-empathy-ff49ee828e63dd35b5c4faf3a0ccd962c7cd63a8.tar.lz gsoc2013-empathy-ff49ee828e63dd35b5c4faf3a0ccd962c7cd63a8.tar.xz gsoc2013-empathy-ff49ee828e63dd35b5c4faf3a0ccd962c7cd63a8.tar.zst gsoc2013-empathy-ff49ee828e63dd35b5c4faf3a0ccd962c7cd63a8.zip |
Stop using removed Individual convenience methods from folks
They were removed from folks with commit
def47dffa31a95ec6bd333f43c69822416098283. This doesn't require a dependency
bump, since they're being replaced with calls to methods which exist in folks
0.3.1. See: bgo#629078. Closes: bgo#634754
Diffstat (limited to 'libempathy-gtk/empathy-linking-dialog.c')
-rw-r--r-- | libempathy-gtk/empathy-linking-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-linking-dialog.c b/libempathy-gtk/empathy-linking-dialog.c index d0a091053..323ec4e03 100644 --- a/libempathy-gtk/empathy-linking-dialog.c +++ b/libempathy-gtk/empathy-linking-dialog.c @@ -180,7 +180,7 @@ linking_response_cb (EmpathyLinkingDialog *self, /* Show a confirmation dialogue first */ dialog = gtk_message_dialog_new (GTK_WINDOW (self), GTK_DIALOG_MODAL, GTK_MESSAGE_WARNING, GTK_BUTTONS_NONE, _("Unlink meta-contact '%s'?"), - folks_individual_get_alias (individual)); + folks_aliasable_get_alias (FOLKS_ALIASABLE (individual))); gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), _("Are you sure you want to unlink this meta-contact? This will " "completely split the meta-contact into the contacts it " |