Initial GNOME2 port.

2001-12-01  Richard Hestilow  <hestilow@ximian.com>

	* Initial GNOME2 port.
This commit is contained in:
Richard Hestilow 2001-12-02 04:54:32 +00:00 committed by Rachel Hestilow
parent bafad73d36
commit 478912430c
21 changed files with 1145 additions and 1067 deletions

View file

@ -124,23 +124,3 @@ create_pixmap (GtkWidget *widget,
gdk_bitmap_unref (mask);
return pixmap;
}
/* This is an internally used function to create imlib images. */
GdkImlibImage*
create_image (const gchar *filename)
{
GdkImlibImage *image;
gchar *pathname;
pathname = gnome_pixmap_file (filename);
if (!pathname)
{
g_warning (_("Couldn't find pixmap file: %s"), filename);
return NULL;
}
image = gdk_imlib_load_image (pathname);
g_free (pathname);
return image;
}