diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2009-07-16 03:00:07 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@novell.com> | 2009-07-16 03:03:33 +0800 |
commit | a2b1510a474a0ac434b05f92be3637398fb7b277 (patch) | |
tree | ad3f8c18f6f2401f7169fdec14aa21e9a73adb5e /mail/em-account-editor.c | |
parent | 5cc01f17a337d125257a8dc3e248a4ae6b66ac92 (diff) | |
download | gsoc2013-evolution-a2b1510a474a0ac434b05f92be3637398fb7b277.tar.gz gsoc2013-evolution-a2b1510a474a0ac434b05f92be3637398fb7b277.tar.zst gsoc2013-evolution-a2b1510a474a0ac434b05f92be3637398fb7b277.zip |
Return account check flag.
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r-- | mail/em-account-editor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 86640aba52..d95463b8b2 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -2924,10 +2924,10 @@ emae_check_complete (EConfig *ec, const gchar *pageid, gpointer data) return ok; } -void +gboolean em_account_editor_check (EMAccountEditor *emae, const gchar *page) { - emae_check_complete ((EConfig *)emae->config, page, emae); + return emae_check_complete ((EConfig *)emae->config, page, emae); } /* HACK: FIXME: the component should listen to the account object directly */ |