]> git.0d.be Git - empathy.git/commitdiff
Port EmpathyAccountsDialog to new API
authorXavier Claessens <xclaesse@gmail.com>
Thu, 16 Apr 2009 12:28:34 +0000 (12:28 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Thu, 16 Apr 2009 12:28:34 +0000 (12:28 +0000)
From: Xavier Claessens <xclaesse@gmail.com>

svn path=/trunk/; revision=2854

src/empathy-accounts-dialog.c

index b1baf6f2c8c23f727d731751dca022673a96d6e5..036c7f86b16e495d5a7fabdf5dd89619d2e4dcbc 100644 (file)
@@ -28,7 +28,6 @@
 #include <stdlib.h>
 
 #include <gtk/gtk.h>
 #include <stdlib.h>
 
 #include <gtk/gtk.h>
-#include <glade/glade.h>
 #include <glib/gi18n.h>
 #include <dbus/dbus-glib.h>
 
 #include <glib/gi18n.h>
 #include <dbus/dbus-glib.h>
 
@@ -1044,7 +1043,7 @@ empathy_accounts_dialog_show (GtkWindow *parent,
                              McAccount *selected_account)
 {
        static EmpathyAccountsDialog *dialog = NULL;
                              McAccount *selected_account)
 {
        static EmpathyAccountsDialog *dialog = NULL;
-       GladeXML                     *glade;
+       GtkBuilder                   *gui;
        gchar                        *filename;
        GList                        *accounts, *l;
        gboolean                      import_asked;
        gchar                        *filename;
        GList                        *accounts, *l;
        gboolean                      import_asked;
@@ -1056,11 +1055,9 @@ empathy_accounts_dialog_show (GtkWindow *parent,
 
        dialog = g_new0 (EmpathyAccountsDialog, 1);
 
 
        dialog = g_new0 (EmpathyAccountsDialog, 1);
 
-       filename = empathy_file_lookup ("empathy-accounts-dialog.glade",
+       filename = empathy_file_lookup ("empathy-accounts-dialog.ui",
                                        "src");
                                        "src");
-       glade = empathy_glade_get_file (filename,
-                                      "accounts_dialog",
-                                      NULL,
+       gui = empathy_builder_get_file (filename,
                                       "accounts_dialog", &dialog->window,
                                       "vbox_details", &dialog->vbox_details,
                                       "frame_no_profile", &dialog->frame_no_profile,
                                       "accounts_dialog", &dialog->window,
                                       "vbox_details", &dialog->vbox_details,
                                       "frame_no_profile", &dialog->frame_no_profile,
@@ -1079,8 +1076,7 @@ empathy_accounts_dialog_show (GtkWindow *parent,
                                       NULL);
        g_free (filename);
 
                                       NULL);
        g_free (filename);
 
-       empathy_glade_connect (glade,
-                             dialog,
+       empathy_builder_connect (gui, dialog,
                              "accounts_dialog", "destroy", accounts_dialog_destroy_cb,
                              "accounts_dialog", "response", accounts_dialog_response_cb,
                              "button_create", "clicked", accounts_dialog_button_create_clicked_cb,
                              "accounts_dialog", "destroy", accounts_dialog_destroy_cb,
                              "accounts_dialog", "response", accounts_dialog_response_cb,
                              "button_create", "clicked", accounts_dialog_button_create_clicked_cb,
@@ -1093,7 +1089,7 @@ empathy_accounts_dialog_show (GtkWindow *parent,
 
        g_object_add_weak_pointer (G_OBJECT (dialog->window), (gpointer) &dialog);
 
 
        g_object_add_weak_pointer (G_OBJECT (dialog->window), (gpointer) &dialog);
 
-       g_object_unref (glade);
+       g_object_unref (gui);
 
        /* Create profile chooser */
        dialog->combobox_profile = empathy_profile_chooser_new ();
 
        /* Create profile chooser */
        dialog->combobox_profile = empathy_profile_chooser_new ();