aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-new-account-dialog.c
diff options
context:
space:
mode:
Diffstat (limited to 'libempathy-gtk/empathy-new-account-dialog.c')
-rw-r--r--libempathy-gtk/empathy-new-account-dialog.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-new-account-dialog.c b/libempathy-gtk/empathy-new-account-dialog.c
index eaa8b07ed..5f77fe2ce 100644
--- a/libempathy-gtk/empathy-new-account-dialog.c
+++ b/libempathy-gtk/empathy-new-account-dialog.c
@@ -38,7 +38,7 @@ struct _EmpathyNewAccountDialogPrivate
GtkWidget *main_vbox;
GtkWidget *connect_button;
- EmpathyAccountSettings *settings;
+ TpawAccountSettings *settings;
};
static void
@@ -53,7 +53,7 @@ static void
protocol_changed_cb (GtkComboBox *chooser,
EmpathyNewAccountDialog *self)
{
- EmpathyAccountSettings *settings;
+ TpawAccountSettings *settings;
TpawAccountWidget *account_widget;
gchar *password = NULL, *account = NULL;
@@ -66,10 +66,10 @@ protocol_changed_cb (GtkComboBox *chooser,
/* Save "account" and "password" parameters */
if (self->priv->settings != NULL)
{
- account = empathy_account_settings_dup_string (
+ account = tpaw_account_settings_dup_string (
self->priv->settings, "account");
- password = empathy_account_settings_dup_string (
+ password = tpaw_account_settings_dup_string (
self->priv->settings, "password");
g_object_unref (self->priv->settings);
@@ -190,7 +190,7 @@ empathy_new_account_dialog_new (GtkWindow *parent)
return result;
}
-EmpathyAccountSettings *
+TpawAccountSettings *
empathy_new_account_dialog_get_settings (EmpathyNewAccountDialog *self)
{
return self->priv->settings;