diff options
correct type where same pixmap mask was unreffed twice
2001-05-04 JP Rosevear <jpr@ximian.com>
* e-meeting-time-sel-list-item.c
(e_meeting_time_selector_list_item_destroy): correct type where
same pixmap mask was unreffed twice
svn path=/trunk/; revision=9673
Diffstat (limited to 'widgets/meeting-time-sel/e-meeting-time-sel-list-item.c')
-rw-r--r-- | widgets/meeting-time-sel/e-meeting-time-sel-list-item.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/meeting-time-sel/e-meeting-time-sel-list-item.c b/widgets/meeting-time-sel/e-meeting-time-sel-list-item.c index fd070c96eb..08fc45fae4 100644 --- a/widgets/meeting-time-sel/e-meeting-time-sel-list-item.c +++ b/widgets/meeting-time-sel/e-meeting-time-sel-list-item.c @@ -160,7 +160,7 @@ e_meeting_time_selector_list_item_destroy (GtkObject *object) gdk_pixmap_unref (mtsl_item->mail_icon); gdk_pixmap_unref (mtsl_item->no_mail_icon); gdk_bitmap_unref (mtsl_item->mail_icon_mask); - gdk_bitmap_unref (mtsl_item->mail_icon_mask); + gdk_bitmap_unref (mtsl_item->no_mail_icon_mask); if (GTK_OBJECT_CLASS (e_meeting_time_selector_list_item_parent_class)->destroy) (*GTK_OBJECT_CLASS (e_meeting_time_selector_list_item_parent_class)->destroy)(object); |