From a1e92e17fa73a059db2be68ee6d0730bff59382b Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Wed, 23 Jul 2003 13:49:30 +0000 Subject: Create the pixbuf from empty.xpm rather than just calling * e-combo-button.c (create_empty_pixmap_widget): Create the pixbuf from empty.xpm rather than just calling gdk_pixbuf_new(), which doesn't actually initialize the pixel data. svn path=/trunk/; revision=21898 --- widgets/misc/e-combo-button.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'widgets/misc/e-combo-button.c') diff --git a/widgets/misc/e-combo-button.c b/widgets/misc/e-combo-button.c index b4c75073fe..5d77d9daf8 100644 --- a/widgets/misc/e-combo-button.c +++ b/widgets/misc/e-combo-button.c @@ -25,6 +25,7 @@ #endif #include "e-combo-button.h" +#include "art/empty.xpm" #include #include @@ -89,7 +90,7 @@ create_empty_pixmap_widget (void) GtkWidget *pixmap_widget; GdkPixbuf *pixbuf; - pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, 1, 1); + pixbuf = gdk_pixbuf_new_from_xpm_data ((const char **)empty_xpm); pixmap_widget = create_pixmap_widget_from_pixbuf (pixbuf); -- cgit v1.2.3