diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-09-19 21:00:52 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-09-19 21:00:52 +0000 |
commit | 3457b1331ef85a8b1868e60543ef491e9e1c7740 (patch) | |
tree | 6f699ed6e50985c250f4484bff20eb93f603327a /gdk-pixbuf/io-xbm.c | |
parent | de05395db28c67421702b0e4b2897de4cb41234f (diff) | |
download | gdk-pixbuf-3457b1331ef85a8b1868e60543ef491e9e1c7740.tar.gz |
Remove the _-prefix from gdk_pixbuf_set_option and
gdk_pixbuf_non_anim_new again.
Diffstat (limited to 'gdk-pixbuf/io-xbm.c')
-rw-r--r-- | gdk-pixbuf/io-xbm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk-pixbuf/io-xbm.c b/gdk-pixbuf/io-xbm.c index 938951670..0ec63755b 100644 --- a/gdk-pixbuf/io-xbm.c +++ b/gdk-pixbuf/io-xbm.c @@ -298,9 +298,9 @@ gdk_pixbuf__xbm_image_load_real (FILE *f, XBMData *context, GError **error) if (x_hot != -1 && y_hot != -1) { gchar hot[10]; g_snprintf (hot, 10, "%d", x_hot); - _gdk_pixbuf_set_option (pixbuf, "x_hot", hot); + gdk_pixbuf_set_option (pixbuf, "x_hot", hot); g_snprintf (hot, 10, "%d", y_hot); - _gdk_pixbuf_set_option (pixbuf, "y_hot", hot); + gdk_pixbuf_set_option (pixbuf, "y_hot", hot); } pixels = gdk_pixbuf_get_pixels (pixbuf); |