diff options
author | Kristian Rietveld <kris@gtk.org> | 2010-08-08 18:02:35 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-08-10 21:02:25 +0200 |
commit | 11ee2abaccb8102abd2bdf92d1844eba6d71ab1a (patch) | |
tree | d8cc3d095a79508e4eed06aa4e91cdd957981b18 /gtk | |
parent | a66e4ebe1ad8e8809342b1ff7adfecaba9a1a0e8 (diff) | |
download | gtk+-11ee2abaccb8102abd2bdf92d1844eba6d71ab1a.tar.gz |
Add missing cairo_destroy() call
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkcolorbutton.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkcolorbutton.c b/gtk/gtkcolorbutton.c index 24bb047d9a..d977081a14 100644 --- a/gtk/gtkcolorbutton.c +++ b/gtk/gtkcolorbutton.c @@ -315,6 +315,8 @@ expose_event (GtkWidget *widget, cairo_pattern_destroy (checkered); } + cairo_destroy (cr); + return FALSE; } |