summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/io-png.c
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2002-09-19 21:00:52 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2002-09-19 21:00:52 +0000
commit944334da7f0d71f4879362d80be91b4a58c1f416 (patch)
tree4c469a67711bc383be4a782b356ecc7803fbb042 /gdk-pixbuf/io-png.c
parent3f5ad7890fa10ec4811e9e1add99e131f1728524 (diff)
downloadgdk-pixbuf-944334da7f0d71f4879362d80be91b4a58c1f416.tar.gz
Remove the _-prefix from gdk_pixbuf_set_option and
gdk_pixbuf_non_anim_new again.
Diffstat (limited to 'gdk-pixbuf/io-png.c')
-rw-r--r--gdk-pixbuf/io-png.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c
index a00e8a677..3b2317efd 100644
--- a/gdk-pixbuf/io-png.c
+++ b/gdk-pixbuf/io-png.c
@@ -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);
}