diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-25 20:45:05 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-05-25 20:45:05 +0800 |
commit | 9cd83f199da867a18e8182e230505cb6ec8b6409 (patch) | |
tree | c27e28fda88d19887e891bd916523e463a68e355 | |
parent | 1a0a1811e796c9117e1bfe1e2ecc091d21e8b87d (diff) | |
download | gsoc2013-empathy-9cd83f199da867a18e8182e230505cb6ec8b6409.tar gsoc2013-empathy-9cd83f199da867a18e8182e230505cb6ec8b6409.tar.gz gsoc2013-empathy-9cd83f199da867a18e8182e230505cb6ec8b6409.tar.bz2 gsoc2013-empathy-9cd83f199da867a18e8182e230505cb6ec8b6409.tar.lz gsoc2013-empathy-9cd83f199da867a18e8182e230505cb6ec8b6409.tar.xz gsoc2013-empathy-9cd83f199da867a18e8182e230505cb6ec8b6409.tar.zst gsoc2013-empathy-9cd83f199da867a18e8182e230505cb6ec8b6409.zip |
assistant: call empathy_import_widget_add_selected_accounts in impl_signal_apply as well
If the user already has a salut account configured, the import page is the
last one of the assistant. So impl_signal_apply() is called instead of
impl_signal_prepare(). (#617971)
-rw-r--r-- | src/empathy-account-assistant.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/empathy-account-assistant.c b/src/empathy-account-assistant.c index a8a77e322..060345a9e 100644 --- a/src/empathy-account-assistant.c +++ b/src/empathy-account-assistant.c @@ -913,6 +913,10 @@ impl_signal_apply (GtkAssistant *assistant) g_object_unref (priv->settings); priv->settings = NULL; } + else if (current_page == PAGE_IMPORT) + { + empathy_import_widget_add_selected_accounts (priv->iw); + } } static void |