gdk_bitmap/pixmap_unref -> gdk_drawable_unref

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38546 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mart Raudsepp
2006-04-04 13:54:02 +00:00
parent 15f0ad7014
commit f368b5b9ab
4 changed files with 16 additions and 16 deletions

View File

@@ -290,8 +290,8 @@ bool wxMiniFrame::Create( wxWindow *parent, wxWindowID id, const wxString &title
);
GtkWidget *pw = gtk_pixmap_new( pixmap, mask );
gdk_bitmap_unref( mask );
gdk_pixmap_unref( pixmap );
gdk_drawable_unref( mask );
gdk_drawable_unref( pixmap );
gtk_widget_show( pw );
GtkWidget *close_button = gtk_button_new();