diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-09-17 22:52:44 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-09-17 22:52:44 +0000 |
commit | 1e3c6144b40aeae501ef6c8c28110bdaa9ba3957 (patch) | |
tree | 9311293a72a24a79b685e764f501b86fca84efa4 /gdk-pixbuf/io-png.c | |
parent | 703b02db6a46bdbc601109afa09322617d46eae1 (diff) | |
download | gtk+-1e3c6144b40aeae501ef6c8c28110bdaa9ba3957.tar.gz |
_-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.
Diffstat (limited to 'gdk-pixbuf/io-png.c')
-rw-r--r-- | gdk-pixbuf/io-png.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c index 3b2317efda..a00e8a677c 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); } |