diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-03 22:45:46 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:06 +0800 |
commit | c7398b967e885e3f0e371ff197a53bc8f7b974db (patch) | |
tree | 1d2641b3e89ff8c8808c2a161371df20701ec950 /plugins/itip-formatter | |
parent | fc1034551ed2daf3040851e818b2798c3c58f4f9 (diff) | |
download | gsoc2013-evolution-c7398b967e885e3f0e371ff197a53bc8f7b974db.tar.gz gsoc2013-evolution-c7398b967e885e3f0e371ff197a53bc8f7b974db.tar.zst gsoc2013-evolution-c7398b967e885e3f0e371ff197a53bc8f7b974db.zip |
Fix compiler warnings.
Mostly dead assignments.
Diffstat (limited to 'plugins/itip-formatter')
-rw-r--r-- | plugins/itip-formatter/itip-formatter.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c index 96dadab0ea..d93f2f5384 100644 --- a/plugins/itip-formatter/itip-formatter.c +++ b/plugins/itip-formatter/itip-formatter.c @@ -2260,7 +2260,6 @@ in_proper_folder (CamelFolder *folder) EMailBackend *backend; EMailSession *session; MailFolderCache *folder_cache; - const gchar *folder_uri; gboolean res = TRUE; gint flags = 0; @@ -2273,8 +2272,6 @@ in_proper_folder (CamelFolder *folder) session = e_mail_backend_get_session (backend); folder_cache = e_mail_session_get_folder_cache (session); - folder_uri = camel_folder_get_uri (folder); - if (mail_folder_cache_get_folder_info_flags (folder_cache, folder, &flags)) { /* it should be neither trash nor junk folder, */ res = ((flags & CAMEL_FOLDER_TYPE_TRASH) != CAMEL_FOLDER_TYPE_TRASH && |