diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2010-03-02 02:59:38 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2010-03-02 02:59:42 +0800 |
commit | b0de7c5d5d8c93dd7b74a77b4892c331f37f5441 (patch) | |
tree | 8c63a77afe624bb20a49c6afd6a86e47704e6a5d /src/empathy.c | |
parent | 886357ee6af17fe37523337209a09aa6f3112604 (diff) | |
download | gsoc2013-empathy-b0de7c5d5d8c93dd7b74a77b4892c331f37f5441.tar gsoc2013-empathy-b0de7c5d5d8c93dd7b74a77b4892c331f37f5441.tar.gz gsoc2013-empathy-b0de7c5d5d8c93dd7b74a77b4892c331f37f5441.tar.bz2 gsoc2013-empathy-b0de7c5d5d8c93dd7b74a77b4892c331f37f5441.tar.lz gsoc2013-empathy-b0de7c5d5d8c93dd7b74a77b4892c331f37f5441.tar.xz gsoc2013-empathy-b0de7c5d5d8c93dd7b74a77b4892c331f37f5441.tar.zst gsoc2013-empathy-b0de7c5d5d8c93dd7b74a77b4892c331f37f5441.zip |
Make the empathy-account code be slightly more streamlined
On every run of the accounts UI we should try to import MC4 accounts (if they
weren't imported already). Also replace the --try-import option with
--if-needed to better document the fact that it will only display the UI if
needed.
Diffstat (limited to 'src/empathy.c')
-rw-r--r-- | src/empathy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/empathy.c b/src/empathy.c index ef2f2106e..b0c731a4b 100644 --- a/src/empathy.c +++ b/src/empathy.c @@ -254,10 +254,11 @@ accounts_application_exited_cb (GPid pid, static void show_accounts_ui (GdkScreen *screen, - gboolean try_import) + gboolean if_needed) { + g_debug ("launching accounts UI"); empathy_accounts_dialog_show_application (screen, - accounts_application_exited_cb, NULL, NULL, try_import, start_hidden); + accounts_application_exited_cb, NULL, NULL, if_needed, start_hidden); } static UniqueResponse |