diff options
author | Jonathan Tellier <jonathan.tellier@gmail.com> | 2009-08-13 20:56:02 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-08-22 23:46:40 +0800 |
commit | adc79c5d0574f548cfe2b89cb0e04d74a5d1e40e (patch) | |
tree | 0d709a920dcba9c23e59b6028f228852213b438b /src/empathy-account-assistant.c | |
parent | 165945e35293556ba6d133f5f90a7251de8d8e4b (diff) | |
download | gsoc2013-empathy-adc79c5d0574f548cfe2b89cb0e04d74a5d1e40e.tar gsoc2013-empathy-adc79c5d0574f548cfe2b89cb0e04d74a5d1e40e.tar.gz gsoc2013-empathy-adc79c5d0574f548cfe2b89cb0e04d74a5d1e40e.tar.bz2 gsoc2013-empathy-adc79c5d0574f548cfe2b89cb0e04d74a5d1e40e.tar.lz gsoc2013-empathy-adc79c5d0574f548cfe2b89cb0e04d74a5d1e40e.tar.xz gsoc2013-empathy-adc79c5d0574f548cfe2b89cb0e04d74a5d1e40e.tar.zst gsoc2013-empathy-adc79c5d0574f548cfe2b89cb0e04d74a5d1e40e.zip |
First part of an overhaul of the accounts dialog
Diffstat (limited to 'src/empathy-account-assistant.c')
-rw-r--r-- | src/empathy-account-assistant.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/empathy-account-assistant.c b/src/empathy-account-assistant.c index 613ba4b8c..8b803a9b6 100644 --- a/src/empathy-account-assistant.c +++ b/src/empathy-account-assistant.c @@ -334,8 +334,9 @@ account_assistant_protocol_changed_cb (GtkComboBox *chooser, if (priv->first_resp == RESPONSE_CREATE_ACCOUNT) empathy_account_settings_set_boolean (settings, "register", TRUE); - account_widget = empathy_account_widget_simple_new_for_protocol - (proto->name, settings, &widget_object); + widget_object = empathy_account_widget_new_for_protocol (proto->name, + settings, TRUE); + account_widget = empathy_account_widget_get_widget (widget_object); if (priv->current_account_widget != NULL) { |