diff options
author | Milan Crha <mcrha@redhat.com> | 2011-06-14 15:26:47 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-06-14 15:26:47 +0800 |
commit | de9b1685edf197281c14ce9c1ae8f384866ff0b2 (patch) | |
tree | c12ade53893a101ac800e8e7472386c97c1cdbfd /mail | |
parent | 810b301080ba5e47af062494e6d2b98f884953b2 (diff) | |
download | gsoc2013-evolution-de9b1685edf197281c14ce9c1ae8f384866ff0b2.tar.gz gsoc2013-evolution-de9b1685edf197281c14ce9c1ae8f384866ff0b2.tar.zst gsoc2013-evolution-de9b1685edf197281c14ce9c1ae8f384866ff0b2.zip |
Remove unused variables reported by gcc
Diffstat (limited to 'mail')
-rw-r--r-- | mail/e-mail-notebook-view.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/mail/e-mail-notebook-view.c b/mail/e-mail-notebook-view.c index 66bf9358f3..544902d964 100644 --- a/mail/e-mail-notebook-view.c +++ b/mail/e-mail-notebook-view.c @@ -82,12 +82,10 @@ static void mnv_set_current_tab (EMailNotebookView *view, gint page) { - ClutterAnimation *animation; - clutter_actor_set_opacity (view->priv->actor, 0); gtk_notebook_set_current_page (view->priv->book, page); - animation = clutter_actor_animate ( + clutter_actor_animate ( (ClutterActor *) view->priv->actor, CLUTTER_EASE_IN_SINE, 500, "opacity", 255, NULL); } @@ -1035,15 +1033,10 @@ build_histogram (GtkWidget *widget, CamelFolder *folder) gfloat ratio; gint x = 0; time_t now = time (NULL); - GtkStyle *style; - GdkColor *color; for (i=0; i<54; i++) weeks[i] = 0; - style = gtk_widget_get_style (GTK_WIDGET (widget)); - color = &style->mid[GTK_STATE_NORMAL]; - uids = camel_folder_get_uids (folder); camel_folder_summary_prepare_fetch_all (folder->summary, NULL); for (i = 0; i < uids->len; i++) { |