diff options
author | Havoc Pennington <hp@redhat.com> | 2000-10-06 18:26:23 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2000-10-06 18:26:23 +0000 |
commit | 286931edee298fcfc658d5ee955bd82ddfd299ae (patch) | |
tree | 320d596381156916e664f50e0c0bb4dfd14a4d21 /gdk-pixbuf/gdk-pixbuf.h | |
parent | 6b9f9072708e6f1b41f9f75acd8d70191ad245ea (diff) | |
download | gtk+-286931edee298fcfc658d5ee955bd82ddfd299ae.tar.gz |
s/format/type/g to be consistent with gdk_pixbuf_loader_new_with_type().
2000-10-06 Havoc Pennington <hp@redhat.com>
* gdk-pixbuf-io.c (gdk_pixbuf_save): s/format/type/g to be
consistent with gdk_pixbuf_loader_new_with_type().
Return runtime error if a module is missing.
* gdk-pixbuf.h: add GDK_PIXBUF_ERROR_UNKNOWN_TYPE
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf.h')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf.h b/gdk-pixbuf/gdk-pixbuf.h index b7c0a6b886..82f0551bac 100644 --- a/gdk-pixbuf/gdk-pixbuf.h +++ b/gdk-pixbuf/gdk-pixbuf.h @@ -68,6 +68,8 @@ typedef enum { GDK_PIXBUF_ERROR_IO, /* bad option value passed to save routine */ GDK_PIXBUF_ERROR_BAD_OPTION_VALUE, + /* unsupported image type (sort of an ENOSYS) */ + GDK_PIXBUF_ERROR_UNKNOWN_TYPE, GDK_PIXBUF_ERROR_FAILED } GdkPixbufErrorType; |