diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-02-27 07:30:13 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-02-27 23:59:55 +0800 |
commit | cc2a65368c9e3e023860e9092a4d8bf3f9a18fce (patch) | |
tree | 7565964736f8c2a785a49bb8b181b347995351db | |
parent | a36a3f418155be6b30a5cb9c92426473d04c100b (diff) | |
download | gsoc2013-evolution-cc2a65368c9e3e023860e9092a4d8bf3f9a18fce.tar gsoc2013-evolution-cc2a65368c9e3e023860e9092a4d8bf3f9a18fce.tar.gz gsoc2013-evolution-cc2a65368c9e3e023860e9092a4d8bf3f9a18fce.tar.bz2 gsoc2013-evolution-cc2a65368c9e3e023860e9092a4d8bf3f9a18fce.tar.lz gsoc2013-evolution-cc2a65368c9e3e023860e9092a4d8bf3f9a18fce.tar.xz gsoc2013-evolution-cc2a65368c9e3e023860e9092a4d8bf3f9a18fce.tar.zst gsoc2013-evolution-cc2a65368c9e3e023860e9092a4d8bf3f9a18fce.zip |
Remove emu_remove_from_mail_cache_1().
No longer used.
-rw-r--r-- | libemail-engine/e-mail-utils.c | 14 | ||||
-rw-r--r-- | libemail-engine/e-mail-utils.h | 1 |
2 files changed, 0 insertions, 15 deletions
diff --git a/libemail-engine/e-mail-utils.c b/libemail-engine/e-mail-utils.c index f385067caf..c224115b98 100644 --- a/libemail-engine/e-mail-utils.c +++ b/libemail-engine/e-mail-utils.c @@ -676,20 +676,6 @@ emu_remove_from_mail_cache (const GSList *addresses) g_object_unref (cia); } -void -emu_remove_from_mail_cache_1 (const gchar *address) -{ - GSList *l; - - g_return_if_fail (address != NULL); - - l = g_slist_append (NULL, (gpointer) address); - - emu_remove_from_mail_cache (l); - - g_slist_free (l); -} - struct FreeMailCacheData { GDestroyNotify done_cb; diff --git a/libemail-engine/e-mail-utils.h b/libemail-engine/e-mail-utils.h index 9cde9ec276..e42c47566b 100644 --- a/libemail-engine/e-mail-utils.h +++ b/libemail-engine/e-mail-utils.h @@ -59,7 +59,6 @@ ESource * em_utils_ref_mail_identity_for_store (ESourceRegistry *registry, CamelStore *store); void emu_remove_from_mail_cache (const GSList *addresses); -void emu_remove_from_mail_cache_1 (const gchar *address); void emu_free_mail_cache (GDestroyNotify done_cb, gpointer user_data); void em_utils_uids_free (GPtrArray *uids); |