Remove the _-prefix from gdk_pixbuf_set_option and

gdk_pixbuf_non_anim_new again.
This commit is contained in:
Matthias Clasen
2002-09-19 21:00:52 +00:00
parent 3f5ad7890f
commit 944334da7f
10 changed files with 25 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);
}