diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-08-11 20:35:00 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-08-11 20:40:34 +0800 |
commit | fc30659d1b22894638f34b558c55cd8435106e75 (patch) | |
tree | 5481e43201f7adc94dbd7cab7b3d480d5db23a96 /mail/e-mail-reader.c | |
parent | 40187cd30a715c428cfa6087c6e3df9fb7159372 (diff) | |
download | gsoc2013-evolution-fc30659d1b22894638f34b558c55cd8435106e75.tar.gz gsoc2013-evolution-fc30659d1b22894638f34b558c55cd8435106e75.tar.zst gsoc2013-evolution-fc30659d1b22894638f34b558c55cd8435106e75.zip |
express: Remove clutter-based email tabs.
This was another MeeGo feature. MeeGo is dead, the code is starting to
bit rot and crashes on startup, the original author disappeared and the
remaining developers are not interested in maintaining it. So it's out.
Diffstat (limited to 'mail/e-mail-reader.c')
-rw-r--r-- | mail/e-mail-reader.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c index b90b77d160..33b604a017 100644 --- a/mail/e-mail-reader.c +++ b/mail/e-mail-reader.c @@ -62,12 +62,6 @@ #include <em-format/e-mail-parser.h> #include <em-format/e-mail-part-utils.h> -#if HAVE_CLUTTER -#include <clutter/clutter.h> -#include <mx/mx.h> -#include <clutter-gtk/clutter-gtk.h> -#endif - #define E_MAIL_READER_GET_PRIVATE(obj) \ ((EMailReaderPrivate *) g_object_get_qdata \ (G_OBJECT (obj), quark_private)) @@ -1040,9 +1034,6 @@ action_mail_next_cb (GtkAction *action, GtkWidget *message_list; MessageListSelectDirection direction; guint32 flags, mask; -#if HAVE_CLUTTER - ClutterActor *actor; -#endif direction = MESSAGE_LIST_SELECT_NEXT; flags = 0; @@ -1050,16 +1041,6 @@ action_mail_next_cb (GtkAction *action, message_list = e_mail_reader_get_message_list (reader); -#if HAVE_CLUTTER - actor = g_object_get_data (G_OBJECT (message_list), "preview-actor"); - if (actor != NULL) { - clutter_actor_set_opacity (actor, 0); - clutter_actor_animate ( - actor, CLUTTER_EASE_OUT_SINE, - 500, "opacity", 255, NULL); - } -#endif - message_list_select ( MESSAGE_LIST (message_list), direction, flags, mask); } |