From d596695afcd6213d205fb4c4042d02a27f1910d1 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Sat, 26 Jun 2010 23:22:53 +0200 Subject: [PATCH] app: run dispose explicitely on the paint_options before unrefing them --- app/core/gimppaintinfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/core/gimppaintinfo.c b/app/core/gimppaintinfo.c index 757a1f309e..20b3ad3da4 100644 --- a/app/core/gimppaintinfo.c +++ b/app/core/gimppaintinfo.c @@ -66,6 +66,7 @@ gimp_paint_info_dispose (GObject *object) if (paint_info->paint_options) { + g_object_run_dispose (G_OBJECT (paint_info->paint_options)); g_object_unref (paint_info->paint_options); paint_info->paint_options = NULL; }