From ec98b57bc493fe3b6a8590c68702006f33f1533e Mon Sep 17 00:00:00 2001 From: Jehan Date: Wed, 3 Feb 2016 20:53:21 +0100 Subject: [PATCH] app: GimpGuideStyle is not in display-enums anymore. --- app/display/display-enums.c | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/app/display/display-enums.c b/app/display/display-enums.c index 934e81c6ea..70e09582cb 100644 --- a/app/display/display-enums.c +++ b/app/display/display-enums.c @@ -39,37 +39,6 @@ gimp_cursor_precision_get_type (void) return type; } -GType -gimp_guide_style_get_type (void) -{ - static const GEnumValue values[] = - { - { GIMP_GUIDE_STYLE_NONE, "GIMP_GUIDE_STYLE_NONE", "none" }, - { GIMP_GUIDE_STYLE_NORMAL, "GIMP_GUIDE_STYLE_NORMAL", "normal" }, - { GIMP_GUIDE_STYLE_MIRROR, "GIMP_GUIDE_STYLE_MIRROR", "mirror" }, - { 0, NULL, NULL } - }; - - static const GimpEnumDesc descs[] = - { - { GIMP_GUIDE_STYLE_NONE, "GIMP_GUIDE_STYLE_NONE", NULL }, - { GIMP_GUIDE_STYLE_NORMAL, "GIMP_GUIDE_STYLE_NORMAL", NULL }, - { GIMP_GUIDE_STYLE_MIRROR, "GIMP_GUIDE_STYLE_MIRROR", NULL }, - { 0, NULL, NULL } - }; - - static GType type = 0; - - if (G_UNLIKELY (! type)) - { - type = g_enum_register_static ("GimpGuideStyle", values); - gimp_type_set_translation_context (type, "guide-style"); - gimp_enum_set_value_descriptions (type, descs); - } - - return type; -} - GType gimp_guides_type_get_type (void) {