_-prefix gdk_pixbuf_non_anim_new and gdk_pixbuf_set_option. Adjust all

* io-xpm.c, io-xbm.c, io-ico.c, io-ani.c, io-png.c,
	gdk-pixbuf.c, gdk-pixbuf-animation.c, gdk-pixbuf-loader.c,
	gdk-pixbuf-private.h: _-prefix gdk_pixbuf_non_anim_new and
	gdk_pixbuf_set_option. Adjust all callers.
This commit is contained in:
Matthias Clasen
2002-09-17 22:52:44 +00:00
parent 703b02db6a
commit 1e3c6144b4
10 changed files with 27 additions and 20 deletions

View File

@ -317,7 +317,7 @@ gdk_pixbuf__png_image_load (FILE *f, GError **error)
if (png_get_text (png_ptr, info_ptr, &text_ptr, &num_texts)) {
for (i = 0; i < num_texts; i++) {
png_text_to_pixbuf_option (text_ptr[i], &key, &value);
gdk_pixbuf_set_option (pixbuf, key, value);
_gdk_pixbuf_set_option (pixbuf, key, value);
g_free (key);
g_free (value);
}
@ -616,7 +616,7 @@ png_info_callback (png_structp png_read_ptr,
if (png_text_to_pixbuf_option (png_text_ptr[i],
&key, &value)) {
gdk_pixbuf_set_option (lc->pixbuf, key, value);
_gdk_pixbuf_set_option (lc->pixbuf, key, value);
g_free (key);
g_free (value);
}