aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-accounts-dialog.c
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-05-09 22:50:15 +0800
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-20 18:03:05 +0800
commit1f633bf20747995395b1dcc7001e0c9502104eda (patch)
tree33eadea37c7a822d332d564ecc6a6e5e5d08db2b /src/empathy-accounts-dialog.c
parenteb7ddccaf6365f4ceb45d8a2ccd006e67e5dd340 (diff)
downloadgsoc2013-empathy-1f633bf20747995395b1dcc7001e0c9502104eda.tar
gsoc2013-empathy-1f633bf20747995395b1dcc7001e0c9502104eda.tar.gz
gsoc2013-empathy-1f633bf20747995395b1dcc7001e0c9502104eda.tar.bz2
gsoc2013-empathy-1f633bf20747995395b1dcc7001e0c9502104eda.tar.lz
gsoc2013-empathy-1f633bf20747995395b1dcc7001e0c9502104eda.tar.xz
gsoc2013-empathy-1f633bf20747995395b1dcc7001e0c9502104eda.tar.zst
gsoc2013-empathy-1f633bf20747995395b1dcc7001e0c9502104eda.zip
builder: move empathy_builder_* from Empathy to tp-account-widgets
This commit also changes the licence of the moved code from GPL to LGPL. See GOSSIP-RELICENSING.txt for details. https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'src/empathy-accounts-dialog.c')
-rw-r--r--src/empathy-accounts-dialog.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index 42bf35d76..53f6997d8 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -29,6 +29,7 @@
#include <glib/gi18n-lib.h>
#include <tp-account-widgets/tpaw-account-widget.h>
+#include <tp-account-widgets/tpaw-builder.h>
#include <tp-account-widgets/tpaw-utils.h>
#include "empathy-accounts-common.h"
@@ -2283,7 +2284,7 @@ accounts_dialog_build_ui (EmpathyAccountsDialog *dialog)
filename = empathy_file_lookup ("empathy-accounts-dialog.ui", "src");
- gui = empathy_builder_get_file (filename,
+ gui = tpaw_builder_get_file (filename,
"accounts_dialog_hbox", &top_hbox,
"vbox_details", &priv->vbox_details,
"alignment_settings", &priv->alignment_settings,
@@ -2299,7 +2300,7 @@ accounts_dialog_build_ui (EmpathyAccountsDialog *dialog)
NULL);
g_free (filename);
- empathy_builder_connect (gui, dialog,
+ tpaw_builder_connect (gui, dialog,
"button_add", "clicked", accounts_dialog_button_add_clicked_cb,
"button_remove", "clicked", accounts_dialog_button_remove_clicked_cb,
"button_import", "clicked", accounts_dialog_button_import_clicked_cb,