From 478cd210e150978c4f80d9785ca2d2803ea28192 Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Tue, 31 Mar 2009 11:57:15 +0000 Subject: [PATCH] Code review: check return value of run account setup wizard pmo-trunk-r8490 --- src/widgets/modest-window-mgr.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/widgets/modest-window-mgr.c b/src/widgets/modest-window-mgr.c index 212f908..7182e7c 100644 --- a/src/widgets/modest-window-mgr.c +++ b/src/widgets/modest-window-mgr.c @@ -907,8 +907,11 @@ modest_window_mgr_show_initial_window (ModestWindowMgr *self) /* If there are no accounts then show the account wizard */ mgr = modest_runtime_get_account_mgr(); - if (!modest_account_mgr_has_accounts (mgr, TRUE)) - modest_ui_actions_run_account_setup_wizard (window); + if (!modest_account_mgr_has_accounts (mgr, TRUE)) { + if (!modest_ui_actions_run_account_setup_wizard (window)) { + g_debug ("%s: couldn't show account setup wizard", __FUNCTION__); + } + } } return window; -- 1.7.9.5