diff options
author | Milan Crha <mcrha@redhat.com> | 2011-06-14 15:26:47 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:27 +0800 |
commit | 5de8b9f77e7bbe189a160e345bb452b648392919 (patch) | |
tree | 37be9f8aa941de3e54ce1aa01c687c5b2cd0455e /mail | |
parent | 5f92f064e670b784dbc78d789e85e21fb83d3559 (diff) | |
download | gsoc2013-evolution-5de8b9f77e7bbe189a160e345bb452b648392919.tar.gz gsoc2013-evolution-5de8b9f77e7bbe189a160e345bb452b648392919.tar.zst gsoc2013-evolution-5de8b9f77e7bbe189a160e345bb452b648392919.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++) { |