]> www.fi.muni.cz Git - evince.git/commitdiff
Don't leak windows.
authorChristian Persch <chpe@cvs.gnome.org>
Thu, 7 Jul 2005 19:12:10 +0000 (19:12 +0000)
committerChristian Persch <chpe@src.gnome.org>
Thu, 7 Jul 2005 19:12:10 +0000 (19:12 +0000)
2005-07-07  Christian Persch  <chpe@cvs.gnome.org>

* cut-n-paste/toolbar-editor/egg-editable-toolbar.c: (new_pixbuf_from_widget),
(new_separator_pixbuf):

Don't leak windows.

cut-n-paste/toolbar-editor/egg-editable-toolbar.c

index 4c3074480387f0530609cd02d7b15aa1e7ba6a4f..006df26a7df8598f5b6059ff21864c0a10aa97c2 100644 (file)
@@ -1411,6 +1411,8 @@ new_pixbuf_from_widget (GtkWidget *widget)
   pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, icon_width, icon_height);
   gdk_pixbuf_get_from_drawable (pixbuf, pixmap, NULL, 0, 0, 0, 0, icon_width, icon_height);
 
+  gtk_widget_destroy (window);
+
   return pixbuf;
 }
 
@@ -1422,7 +1424,6 @@ new_separator_pixbuf ()
 
   separator = gtk_vseparator_new ();
   pixbuf = new_pixbuf_from_widget (separator);
-  gtk_widget_destroy (separator);
   return pixbuf;
 }