[empathy] Renamed empathy_profile_chooser_get_selected to empathy_profile_chooser_dup_selected and fixed leaks



commit 5303246bdec46980c2a447e77759f4c107967bca
Author: Jonny Lamb <jonny lamb collabora co uk>
Date:   Wed Apr 22 12:09:38 2009 +0100

    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>
---
 libempathy-gtk/empathy-profile-chooser.c |    2 +-
 libempathy-gtk/empathy-profile-chooser.h |    2 +-
 src/empathy-accounts-dialog.c            |    5 +++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/libempathy-gtk/empathy-profile-chooser.c b/libempathy-gtk/empathy-profile-chooser.c
index fd68dd8..897e383 100644
--- a/libempathy-gtk/empathy-profile-chooser.c
+++ b/libempathy-gtk/empathy-profile-chooser.c
@@ -38,7 +38,7 @@ enum {
 };
 
 McProfile*
-empathy_profile_chooser_get_selected (GtkWidget *widget)
+empathy_profile_chooser_dup_selected (GtkWidget *widget)
 {
 	GtkTreeModel *model;
 	GtkTreeIter   iter;
diff --git a/libempathy-gtk/empathy-profile-chooser.h b/libempathy-gtk/empathy-profile-chooser.h
index 8cdc33d..74c761c 100644
--- a/libempathy-gtk/empathy-profile-chooser.h
+++ b/libempathy-gtk/empathy-profile-chooser.h
@@ -27,7 +27,7 @@
 G_BEGIN_DECLS
 
 GtkWidget * empathy_profile_chooser_new          (void);
-McProfile * empathy_profile_chooser_get_selected (GtkWidget *widget);
+McProfile * empathy_profile_chooser_dup_selected (GtkWidget *widget);
 gint        empathy_profile_chooser_n_profiles   (GtkWidget *widget);
 
 G_END_DECLS
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index 036c7f8..e15c0ea 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) {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]