aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-05-03 19:50:40 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-05-03 21:42:06 +0800
commit554f2eacf773dac9e000dc4415209c70e06efbc3 (patch)
tree20bce81656838cee79e22a67bd00aa7c9ee77b86
parente7136c728938dc75211111148cd184731f720911 (diff)
downloadgsoc2013-evolution-554f2eacf773dac9e000dc4415209c70e06efbc3.tar
gsoc2013-evolution-554f2eacf773dac9e000dc4415209c70e06efbc3.tar.gz
gsoc2013-evolution-554f2eacf773dac9e000dc4415209c70e06efbc3.tar.bz2
gsoc2013-evolution-554f2eacf773dac9e000dc4415209c70e06efbc3.tar.lz
gsoc2013-evolution-554f2eacf773dac9e000dc4415209c70e06efbc3.tar.xz
gsoc2013-evolution-554f2eacf773dac9e000dc4415209c70e06efbc3.tar.zst
gsoc2013-evolution-554f2eacf773dac9e000dc4415209c70e06efbc3.zip
em-utils.c: More coding style cleanups.
-rw-r--r--mail/em-utils.c25
1 files changed, 17 insertions, 8 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c
index ecd787c63b..448dcf8320 100644
--- a/mail/em-utils.c
+++ b/mail/em-utils.c
@@ -1007,10 +1007,8 @@ em_utils_folder_is_templates (CamelFolder *folder, const gchar *uri)
CamelSession *session;
CamelStore *store;
EAccountList *account_list;
- EAccount *account;
EIterator *iterator;
gint is_templates = FALSE;
- gchar *templates_uri;
local_templates_folder =
e_mail_local_get_folder (E_MAIL_LOCAL_FOLDER_TEMPLATES);
@@ -1028,9 +1026,14 @@ em_utils_folder_is_templates (CamelFolder *folder, const gchar *uri)
iterator = e_list_get_iterator (E_LIST (account_list));
while (!is_templates && e_iterator_is_valid (iterator)) {
- account = (EAccount *)e_iterator_get (iterator);
+ EAccount *account;
+
+ /* XXX EIterator misuses const. */
+ account = (EAccount *) e_iterator_get (iterator);
if (account->templates_folder_uri) {
+ gchar *templates_uri;
+
templates_uri = em_uri_to_camel (
account->templates_folder_uri);
is_templates = e_mail_folder_uri_equal (
@@ -1062,10 +1065,8 @@ em_utils_folder_is_drafts (CamelFolder *folder, const gchar *uri)
CamelSession *session;
CamelStore *store;
EAccountList *account_list;
- EAccount *account;
EIterator *iterator;
gint is_drafts = FALSE;
- gchar *drafts_uri;
local_drafts_folder =
e_mail_local_get_folder (E_MAIL_LOCAL_FOLDER_DRAFTS);
@@ -1083,9 +1084,14 @@ em_utils_folder_is_drafts (CamelFolder *folder, const gchar *uri)
iterator = e_list_get_iterator (E_LIST (account_list));
while (!is_drafts && e_iterator_is_valid (iterator)) {
- account = (EAccount *)e_iterator_get (iterator);
+ EAccount *account;
+
+ /* XXX EIterator misuses const. */
+ account = (EAccount *) e_iterator_get (iterator);
if (account->drafts_folder_uri) {
+ gchar *drafts_uri;
+
drafts_uri = em_uri_to_camel (
account->drafts_folder_uri);
is_drafts = e_mail_folder_uri_equal (
@@ -1117,10 +1123,8 @@ em_utils_folder_is_sent (CamelFolder *folder, const gchar *uri)
CamelSession *session;
CamelStore *store;
EAccountList *account_list;
- EAccount *account;
EIterator *iterator;
gint is_sent = FALSE;
- gchar *sent_uri;
local_sent_folder =
e_mail_local_get_folder (E_MAIL_LOCAL_FOLDER_SENT);
@@ -1138,9 +1142,14 @@ em_utils_folder_is_sent (CamelFolder *folder, const gchar *uri)
iterator = e_list_get_iterator (E_LIST (account_list));
while (!is_sent && e_iterator_is_valid (iterator)) {
+ EAccount *account;
+
+ /* XXX EIterator misuses const. */
account = (EAccount *)e_iterator_get (iterator);
if (account->sent_folder_uri) {
+ gchar *sent_uri;
+
sent_uri = em_uri_to_camel (
account->sent_folder_uri);
is_sent = e_mail_folder_uri_equal (