diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2011-02-09 00:57:50 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:31 +0800 |
commit | 8efc1bc6f91e06ca61b00eb8119c9c36697e43a6 (patch) | |
tree | 95ec3e7ac41deec84bfd02de6ee05faf245b3dea /mail/mail-mt.c | |
parent | be15d6730130da3f9e2fa6579233d5a9b304a7ea (diff) | |
download | gsoc2013-evolution-8efc1bc6f91e06ca61b00eb8119c9c36697e43a6.tar.gz gsoc2013-evolution-8efc1bc6f91e06ca61b00eb8119c9c36697e43a6.tar.zst gsoc2013-evolution-8efc1bc6f91e06ca61b00eb8119c9c36697e43a6.zip |
Bug 641756 - Fix warnings from GCC 4.6
GCC learned how to find dead assignments.
Diffstat (limited to 'mail/mail-mt.c')
-rw-r--r-- | mail/mail-mt.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/mail/mail-mt.c b/mail/mail-mt.c index 21471c5108..a65f6e3c9e 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -131,15 +131,8 @@ checkmem (gpointer p) static gboolean mail_msg_free (MailMsg *mail_msg) { - EShell *shell; - EShellBackend *shell_backend; - /* This is an idle callback. */ - shell = e_shell_get_default (); - shell_backend = e_shell_get_backend_by_name ( - shell, shell_builtin_backend); - if (mail_msg->activity != NULL) g_object_unref (mail_msg->activity); |