aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarco Barisione <marco.barisione@collabora.co.uk>2013-07-30 21:09:13 +0800
committerMarco Barisione <marco.barisione@collabora.co.uk>2013-08-20 18:03:06 +0800
commitfad2ecd3f071c671425954638081c641ff603503 (patch)
tree357457723be2c4ba210d4d5272f85a1523283499 /src
parent897485f18cd903d83d109a4d671e2841a41c64a7 (diff)
downloadgsoc2013-empathy-fad2ecd3f071c671425954638081c641ff603503.tar
gsoc2013-empathy-fad2ecd3f071c671425954638081c641ff603503.tar.gz
gsoc2013-empathy-fad2ecd3f071c671425954638081c641ff603503.tar.bz2
gsoc2013-empathy-fad2ecd3f071c671425954638081c641ff603503.tar.lz
gsoc2013-empathy-fad2ecd3f071c671425954638081c641ff603503.tar.xz
gsoc2013-empathy-fad2ecd3f071c671425954638081c641ff603503.tar.zst
gsoc2013-empathy-fad2ecd3f071c671425954638081c641ff603503.zip
user-info: move from Empathy to tp-account-widgets
https://bugzilla.gnome.org/show_bug.cgi?id=699492
Diffstat (limited to 'src')
-rw-r--r--src/empathy-accounts-dialog.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index 53f6997d8..ca5d57f5c 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -30,6 +30,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-user-info.h>
#include <tp-account-widgets/tpaw-utils.h>
#include "empathy-accounts-common.h"
@@ -39,7 +40,6 @@
#include "empathy-new-account-dialog.h"
#include "empathy-pkg-kit.h"
#include "empathy-ui-utils.h"
-#include "empathy-user-info.h"
#include "empathy-utils.h"
#define DEBUG_FLAG EMPATHY_DEBUG_ACCOUNT
@@ -701,7 +701,7 @@ account_dialog_create_dialog_content (EmpathyAccountsDialog *dialog,
gtk_widget_show (priv->dialog_content);
alig = gtk_alignment_new (0.5, 0, 1, 1);
- priv->user_info = empathy_user_info_new (account);
+ priv->user_info = tpaw_user_info_new (account);
gtk_container_add (GTK_CONTAINER (alig), priv->user_info);
gtk_box_pack_start (GTK_BOX (priv->dialog_content), alig, TRUE, TRUE, 0);
gtk_widget_show (alig);
@@ -925,7 +925,7 @@ accounts_dialog_update_settings (EmpathyAccountsDialog *dialog,
if (priv->user_info != NULL)
{
- empathy_user_info_apply_async ((EmpathyUserInfo *) priv->user_info,
+ tpaw_user_info_apply_async ((TpawUserInfo *) priv->user_info,
NULL, NULL);
priv->user_info = NULL;
}
@@ -2431,7 +2431,7 @@ do_dispose (GObject *obj)
if (priv->user_info != NULL)
{
- empathy_user_info_apply_async ((EmpathyUserInfo *) priv->user_info,
+ tpaw_user_info_apply_async ((TpawUserInfo *) priv->user_info,
NULL, NULL);
priv->user_info = NULL;
}