aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-day-view-top-item.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-11-02 18:16:48 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2010-11-10 06:33:21 +0800
commit3b3b6cb0abf2bab0a145df00184fc96677870ec8 (patch)
treee17937633c7ad02a1cafaaa2c81ea6f9401ab276 /calendar/gui/e-day-view-top-item.c
parent200cf8a51dcb360e0452fd985e7331906b70bb67 (diff)
downloadgsoc2013-evolution-3b3b6cb0abf2bab0a145df00184fc96677870ec8.tar
gsoc2013-evolution-3b3b6cb0abf2bab0a145df00184fc96677870ec8.tar.gz
gsoc2013-evolution-3b3b6cb0abf2bab0a145df00184fc96677870ec8.tar.bz2
gsoc2013-evolution-3b3b6cb0abf2bab0a145df00184fc96677870ec8.tar.lz
gsoc2013-evolution-3b3b6cb0abf2bab0a145df00184fc96677870ec8.tar.xz
gsoc2013-evolution-3b3b6cb0abf2bab0a145df00184fc96677870ec8.tar.zst
gsoc2013-evolution-3b3b6cb0abf2bab0a145df00184fc96677870ec8.zip
Add forgotten cairo_destroy() calls
Diffstat (limited to 'calendar/gui/e-day-view-top-item.c')
-rw-r--r--calendar/gui/e-day-view-top-item.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/e-day-view-top-item.c b/calendar/gui/e-day-view-top-item.c
index fffb6141eb..1703467840 100644
--- a/calendar/gui/e-day-view-top-item.c
+++ b/calendar/gui/e-day-view-top-item.c
@@ -76,8 +76,6 @@ day_view_top_item_draw_triangle (EDayViewTopItem *top_item,
gint c1, c2;
cairo_t *cr;
- cr = gdk_cairo_create (drawable);
-
day_view = e_day_view_top_item_get_day_view (top_item);
points[0].x = x;
@@ -102,6 +100,8 @@ day_view_top_item_draw_triangle (EDayViewTopItem *top_item,
if (!is_comp_data_valid (event))
return;
+ cr = gdk_cairo_create (drawable);
+
cairo_save (cr);
/* Fill it in. */
if (gdk_color_parse (
@@ -181,8 +181,6 @@ day_view_top_item_draw_long_event (EDayViewTopItem *top_item,
day_view = e_day_view_top_item_get_day_view (top_item);
model = e_calendar_view_get_model (E_CALENDAR_VIEW (day_view));
- cr = gdk_cairo_create (drawable);
-
gradient = calendar_config_get_display_events_gradient ();
alpha = calendar_config_get_display_events_alpha ();
@@ -207,6 +205,8 @@ day_view_top_item_draw_long_event (EDayViewTopItem *top_item,
if (!is_comp_data_valid (event))
return;
+ cr = gdk_cairo_create (drawable);
+
style = gtk_widget_get_style (GTK_WIDGET (day_view));
comp = e_cal_component_new ();
e_cal_component_set_icalcomponent (