From 842a43f80230c65d024a5859c6b67dc601e7de64 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Tue, 22 Nov 2005 18:11:58 +0000 Subject: fix up more enums Original commit message from CVS: fix up more enums --- ext/gdk_pixbuf/pixbufscale.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/gdk_pixbuf') 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}, }; -- cgit