[gegl] gegl-enums: fix type macro of GeglAbyssPolicy: GEGL_TYPE_FOO not GEGL_FOO_TYPE



commit fd8030a9c96bd19e385bf5ff7f7f9abef12318b8
Author: Michael Natterer <mitch gimp org>
Date:   Sun May 19 19:49:41 2013 +0200

    gegl-enums: fix type macro of GeglAbyssPolicy: GEGL_TYPE_FOO not GEGL_FOO_TYPE

 gegl/gegl-enums.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gegl/gegl-enums.h b/gegl/gegl-enums.h
index 66f5a05..555cea9 100644
--- a/gegl/gegl-enums.h
+++ b/gegl/gegl-enums.h
@@ -38,7 +38,7 @@ typedef enum {
   GEGL_SAMPLER_NOHALO,        /*< desc="nohalo"       >*/
   GEGL_SAMPLER_LOHALO         /*< desc="lohalo"       >*/
 } GeglSamplerType;
-GType gegl_sampler_type_get_type   (void) G_GNUC_CONST;
+GType gegl_sampler_type_get_type (void) G_GNUC_CONST;
 #define GEGL_TYPE_SAMPLER_TYPE (gegl_sampler_type_get_type())
 
 typedef enum {
@@ -48,8 +48,8 @@ typedef enum {
   GEGL_ABYSS_BLACK,
   GEGL_ABYSS_WHITE
 } GeglAbyssPolicy;
-GType gegl_abyss_policy_get_type   (void) G_GNUC_CONST;
-#define GEGL_ABYSS_POLICY_TYPE (gegl_abyss_policy_get_type())
+GType gegl_abyss_policy_get_type (void) G_GNUC_CONST;
+#define GEGL_TYPE_ABYSS_POLICY (gegl_abyss_policy_get_type())
 
 G_END_DECLS
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]