aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-week-view-event-item.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2001-08-10 08:17:55 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2001-08-10 08:17:55 +0800
commit01fa840a36c950fcbd18f11183320a403c5fc903 (patch)
treee0864b31671a818314d228da41d875508db1f231 /calendar/gui/e-week-view-event-item.c
parent09eba6fad0da0db54d594e62420fe4a2c325af22 (diff)
downloadgsoc2013-evolution-01fa840a36c950fcbd18f11183320a403c5fc903.tar
gsoc2013-evolution-01fa840a36c950fcbd18f11183320a403c5fc903.tar.gz
gsoc2013-evolution-01fa840a36c950fcbd18f11183320a403c5fc903.tar.bz2
gsoc2013-evolution-01fa840a36c950fcbd18f11183320a403c5fc903.tar.lz
gsoc2013-evolution-01fa840a36c950fcbd18f11183320a403c5fc903.tar.xz
gsoc2013-evolution-01fa840a36c950fcbd18f11183320a403c5fc903.tar.zst
gsoc2013-evolution-01fa840a36c950fcbd18f11183320a403c5fc903.zip
unref the GdkPixmap and GdkBitmap returned by the function
2001-08-09 Rodrigo Moya <rodrigo@ximian.com> * gui/e-day-view-top-item.c (e_day_view_top_item_draw_long_event): * gui/e-day-view-main-item.c (e_day_view_main_item_draw_day_event): * gui/e-week-view-event-item.c (e_week_view_event_item_draw_icons): unref the GdkPixmap and GdkBitmap returned by the function e_categories_config_get_icon_for () svn path=/trunk/; revision=11859
Diffstat (limited to 'calendar/gui/e-week-view-event-item.c')
-rw-r--r--calendar/gui/e-week-view-event-item.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/calendar/gui/e-week-view-event-item.c b/calendar/gui/e-week-view-event-item.c
index f304bc9d45..f0b4a167b3 100644
--- a/calendar/gui/e-week-view-event-item.c
+++ b/calendar/gui/e-week-view-event-item.c
@@ -636,7 +636,7 @@ e_week_view_event_item_draw_icons (EWeekViewEventItem *wveitem,
category = (char *) elem->data;
e_categories_config_get_icon_for (category, &pixmap, &mask);
- if (pixmap == NULL || mask == NULL)
+ if (pixmap == NULL)
continue;
if (icon_x + E_WEEK_VIEW_ICON_WIDTH <= x2) {
@@ -650,6 +650,9 @@ e_week_view_event_item_draw_icons (EWeekViewEventItem *wveitem,
E_WEEK_VIEW_ICON_HEIGHT);
icon_x += icon_x_inc;
}
+ gdk_pixmap_unref (pixmap);
+ if (mask != NULL)
+ gdk_bitmap_unref (mask);
}
cal_component_free_categories_list (categories_list);