diff options
author | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-24 23:01:53 +0800 |
---|---|---|
committer | Jonny Lamb <jonnylamb@gnome.org> | 2009-10-24 23:01:53 +0800 |
commit | b126bcf946e65de4e061d89481166fd6894ef44a (patch) | |
tree | 7638c9dec24fa5272da2c3e628dd58ba025fc8fb | |
parent | eb593876a497fec9d0c1fd182af5d15a29fc1194 (diff) | |
download | gsoc2013-empathy-b126bcf946e65de4e061d89481166fd6894ef44a.tar gsoc2013-empathy-b126bcf946e65de4e061d89481166fd6894ef44a.tar.gz gsoc2013-empathy-b126bcf946e65de4e061d89481166fd6894ef44a.tar.bz2 gsoc2013-empathy-b126bcf946e65de4e061d89481166fd6894ef44a.tar.lz gsoc2013-empathy-b126bcf946e65de4e061d89481166fd6894ef44a.tar.xz gsoc2013-empathy-b126bcf946e65de4e061d89481166fd6894ef44a.tar.zst gsoc2013-empathy-b126bcf946e65de4e061d89481166fd6894ef44a.zip |
new-chatroom-dialog: port to new tp-glib account API
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
-rw-r--r-- | src/empathy-new-chatroom-dialog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/empathy-new-chatroom-dialog.c b/src/empathy-new-chatroom-dialog.c index 219be371d..8ea65adf2 100644 --- a/src/empathy-new-chatroom-dialog.c +++ b/src/empathy-new-chatroom-dialog.c @@ -354,7 +354,7 @@ static void new_chatroom_dialog_update_widgets (EmpathyNewChatroomDialog *dialog) { EmpathyAccountChooser *account_chooser; - EmpathyAccount *account; + TpAccount *account; const gchar *protocol; const gchar *room; @@ -364,7 +364,7 @@ new_chatroom_dialog_update_widgets (EmpathyNewChatroomDialog *dialog) if (account == NULL) return; - protocol = empathy_account_get_protocol (account); + protocol = tp_account_get_protocol (account); gtk_entry_set_text (GTK_ENTRY (dialog->entry_server), ""); @@ -396,7 +396,7 @@ new_chatroom_dialog_account_changed_cb (GtkComboBox *combobox, EmpathyNewChatroomDialog *dialog) { EmpathyAccountChooser *account_chooser; - EmpathyAccount *account; + TpAccount *account; gboolean listing = FALSE; gboolean expanded = FALSE; |