aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-reader-utils.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-12-02 00:57:32 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-12-02 04:01:14 +0800
commit76fbb9d23242cba427d71ded5590a9cad271b2b3 (patch)
tree8455d618023e0e82209e610868c9a43fbf41c00e /mail/e-mail-reader-utils.c
parenta0b641b7c6160bfda32ed2bcef40a364973a934b (diff)
downloadgsoc2013-evolution-76fbb9d23242cba427d71ded5590a9cad271b2b3.tar
gsoc2013-evolution-76fbb9d23242cba427d71ded5590a9cad271b2b3.tar.gz
gsoc2013-evolution-76fbb9d23242cba427d71ded5590a9cad271b2b3.tar.bz2
gsoc2013-evolution-76fbb9d23242cba427d71ded5590a9cad271b2b3.tar.lz
gsoc2013-evolution-76fbb9d23242cba427d71ded5590a9cad271b2b3.tar.xz
gsoc2013-evolution-76fbb9d23242cba427d71ded5590a9cad271b2b3.tar.zst
gsoc2013-evolution-76fbb9d23242cba427d71ded5590a9cad271b2b3.zip
Kill message_list_free_uids().
Use em_utils_uids_free() instead.
Diffstat (limited to 'mail/e-mail-reader-utils.c')
-rw-r--r--mail/e-mail-reader-utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/e-mail-reader-utils.c b/mail/e-mail-reader-utils.c
index f1ef1034b1..de171d90ad 100644
--- a/mail/e-mail-reader-utils.c
+++ b/mail/e-mail-reader-utils.c
@@ -182,7 +182,7 @@ e_mail_reader_mark_selected (EMailReader *reader,
camel_folder_set_message_flags (
folder, uids->pdata[ii], mask, set);
- message_list_free_uids (MESSAGE_LIST (message_list), uids);
+ em_utils_uids_free (uids);
camel_folder_thaw (folder);
return ii;
@@ -211,7 +211,7 @@ e_mail_reader_open_selected (EMailReader *reader)
uids = message_list_get_selected (MESSAGE_LIST (message_list));
if (!em_utils_ask_open_many (window, uids->len)) {
- message_list_free_uids (MESSAGE_LIST (message_list), uids);
+ em_utils_uids_free (uids);
return 0;
}
@@ -274,7 +274,7 @@ e_mail_reader_open_selected (EMailReader *reader)
g_ptr_array_free (views, TRUE);
- message_list_free_uids (MESSAGE_LIST (message_list), uids);
+ em_utils_uids_free (uids);
return ii;
}
@@ -311,7 +311,7 @@ e_mail_reader_print (EMailReader *reader,
g_object_unref (html_print);
exit:
- message_list_free_uids (MESSAGE_LIST (message_list), uids);
+ em_utils_uids_free (uids);
}
/* Helper for e_mail_reader_reply_to_message()