diff options
author | Sarfraaz Ahmed <asarfraaz@novell.com> | 2005-07-11 15:16:42 +0800 |
---|---|---|
committer | Ahmed Sarfraaz <sarfraaz@src.gnome.org> | 2005-07-11 15:16:42 +0800 |
commit | 4dbbd163dd4a8866e9547ff40002b34ade4ff3b1 (patch) | |
tree | 04aac693323367be1ab12c38e528c553544726ba /plugins/exchange-operations/exchange-operations.h | |
parent | 21eb448cadb620929c16b8ca732bd759ac4d74bb (diff) | |
download | gsoc2013-evolution-4dbbd163dd4a8866e9547ff40002b34ade4ff3b1.tar.gz gsoc2013-evolution-4dbbd163dd4a8866e9547ff40002b34ade4ff3b1.tar.zst gsoc2013-evolution-4dbbd163dd4a8866e9547ff40002b34ade4ff3b1.zip |
Patch submitted by ArunPrakash <arunp@novell.com> Newly added, to report
2005-07-11 Sarfraaz Ahmed <asarfraaz@novell.com>
Patch submitted by ArunPrakash <arunp@novell.com>
* exchange-operations.c (exchange_operations_report_error) : Newly
added, to report errors using e_error_run. Also a list of error-ids is
added.
* exchange-config-listener.c (account_added) (account_removed) :
Modified the usage of e_notice to e_error_run. Also the error from
exchange_account_connect is reported using
exchange_operations_report_error.
* exchange-account-setup.c (btn_chpass_clicked)
(org_gnome_exchange_settings) (print_error) (set_oof_info): Changed to
use exchange_operations_report_error and e_error_run functions.
* org-gnome-exchange-operations.error.xml : Newly added, defines
the list of error messages used in the plugin.
* Makefile.am : Modified for org-gnome-exchange-operations.error.xml
svn path=/trunk/; revision=29707
Diffstat (limited to 'plugins/exchange-operations/exchange-operations.h')
-rw-r--r-- | plugins/exchange-operations/exchange-operations.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/exchange-operations/exchange-operations.h b/plugins/exchange-operations/exchange-operations.h index 5b4fe3a577..bf41b3088f 100644 --- a/plugins/exchange-operations/exchange-operations.h +++ b/plugins/exchange-operations/exchange-operations.h @@ -26,6 +26,7 @@ #include "e-util/e-plugin.h" #include "exchange-config-listener.h" +#include <exchange-account.h> #ifdef __cplusplus extern "C" { @@ -43,6 +44,8 @@ gboolean exchange_operations_tokenize_string (char **string, char *token, char d gboolean exchange_operations_cta_add_node_to_tree (GtkTreeStore *store, GtkTreeIter *parent, const char *nuri); void exchange_operations_cta_select_node_from_tree (GtkTreeStore *store, GtkTreeIter *parent, const char *nuri, const char *ruri, GtkTreeSelection *selection) ; +void exchange_operations_report_error (ExchangeAccount *account, ExchangeAccountResult result); + #ifdef __cplusplus } #endif /* __cplusplus */ |