summaryrefslogtreecommitdiffstats
path: root/ext/gdk_pixbuf
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-11-22 18:11:58 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-11-22 18:11:58 +0000
commit842a43f80230c65d024a5859c6b67dc601e7de64 (patch)
treea012246390f7c9192d05f2d1c4889e6e604a4bc3 /ext/gdk_pixbuf
parenta6e0bc89cb979d320dde7ca84150254e67fcd51c (diff)
fix up more enums
Original commit message from CVS: fix up more enums
Diffstat (limited to 'ext/gdk_pixbuf')
-rw-r--r--ext/gdk_pixbuf/pixbufscale.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/gdk_pixbuf/pixbufscale.c b/ext/gdk_pixbuf/pixbufscale.c
index 1cecdab6..9edef400 100644
--- a/ext/gdk_pixbuf/pixbufscale.c
+++ b/ext/gdk_pixbuf/pixbufscale.c
@@ -81,10 +81,10 @@ gst_pixbufscale_method_get_type (void)
{
static GType pixbufscale_method_type = 0;
static GEnumValue pixbufscale_methods[] = {
- {GST_PIXBUFSCALE_NEAREST, "0", "Nearest Neighbour"},
- {GST_PIXBUFSCALE_TILES, "1", "Tiles"},
- {GST_PIXBUFSCALE_BILINEAR, "2", "Bilinear"},
- {GST_PIXBUFSCALE_HYPER, "3", "Hyper"},
+ {GST_PIXBUFSCALE_NEAREST, "Nearest Neighbour", "nearest"},
+ {GST_PIXBUFSCALE_TILES, "Tiles", "tiles"},
+ {GST_PIXBUFSCALE_BILINEAR, "Bilinear", "bilinear"},
+ {GST_PIXBUFSCALE_HYPER, "Hyper", "hyper"},
{0, NULL, NULL},
};