diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-04-22 19:09:38 +0800 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2009-04-22 19:09:38 +0800 |
commit | 5303246bdec46980c2a447e77759f4c107967bca (patch) | |
tree | 0fce603338171ad33507d45fa52be0f1dbdd8955 /src | |
parent | 10a93b8c864c38dacc49a9f33b7ebf0cff549cfb (diff) | |
download | gsoc2013-empathy-5303246bdec46980c2a447e77759f4c107967bca.tar gsoc2013-empathy-5303246bdec46980c2a447e77759f4c107967bca.tar.gz gsoc2013-empathy-5303246bdec46980c2a447e77759f4c107967bca.tar.bz2 gsoc2013-empathy-5303246bdec46980c2a447e77759f4c107967bca.tar.lz gsoc2013-empathy-5303246bdec46980c2a447e77759f4c107967bca.tar.xz gsoc2013-empathy-5303246bdec46980c2a447e77759f4c107967bca.tar.zst gsoc2013-empathy-5303246bdec46980c2a447e77759f4c107967bca.zip |
Renamed empathy_profile_chooser_get_selected to empathy_profile_chooser_dup_selected and fixed leaks.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'src')
-rw-r--r-- | src/empathy-accounts-dialog.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index 036c7f86b..e15c0eab1 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -819,13 +819,14 @@ accounts_dialog_button_create_clicked_cb (GtkWidget *button, gchar *str; McProfileCapabilityFlags cap; - profile = empathy_profile_chooser_get_selected (dialog->combobox_profile); + profile = empathy_profile_chooser_dup_selected (dialog->combobox_profile); /* Create account */ account = mc_account_create (profile); if (account == NULL) { /* We can't display an error to the user as MC doesn't give us * any clue about the reason of the failure... */ + g_object_unref (profile); return; } @@ -869,7 +870,7 @@ accounts_dialog_profile_changed_cb (GtkWidget *widget, McProfile *profile; McProfileCapabilityFlags cap; - profile = empathy_profile_chooser_get_selected (dialog->combobox_profile); + profile = empathy_profile_chooser_dup_selected (dialog->combobox_profile); cap = mc_profile_get_capabilities (profile); if (cap & MC_PROFILE_CAPABILITY_REGISTRATION_UI) { |