From b5b8aff42d581ffb11c5a790d0de0e907ac36741 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Mon, 14 Sep 2009 21:38:30 +0200 Subject: [PATCH] Make class and instance structs public There is no need to keep these specific structs hidden and gtk-doc likes it better that way. --- app/gegl/gimpoperationpointlayermode.c | 13 ------------- app/gegl/gimpoperationpointlayermode.h | 12 ++++++++++++ 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/app/gegl/gimpoperationpointlayermode.c b/app/gegl/gimpoperationpointlayermode.c index 276956f4b9..1b591550ef 100644 --- a/app/gegl/gimpoperationpointlayermode.c +++ b/app/gegl/gimpoperationpointlayermode.c @@ -73,19 +73,6 @@ enum }; -struct _GimpOperationPointLayerModeClass -{ - GeglOperationPointComposerClass parent_class; -}; - -struct _GimpOperationPointLayerMode -{ - GeglOperationPointComposer parent_instance; - - GimpLayerModeEffects blend_mode; -}; - - static void gimp_operation_point_layer_mode_set_property (GObject *object, guint property_id, const GValue *value, diff --git a/app/gegl/gimpoperationpointlayermode.h b/app/gegl/gimpoperationpointlayermode.h index 81ebfd5b38..e537111fca 100644 --- a/app/gegl/gimpoperationpointlayermode.h +++ b/app/gegl/gimpoperationpointlayermode.h @@ -32,6 +32,18 @@ typedef struct _GimpOperationPointLayerModeClass GimpOperationPointLayerModeClass; +struct _GimpOperationPointLayerModeClass +{ + GeglOperationPointComposerClass parent_class; +}; + +struct _GimpOperationPointLayerMode +{ + GeglOperationPointComposer parent_instance; + + GimpLayerModeEffects blend_mode; +}; + GType gimp_operation_point_layer_mode_get_type (void) G_GNUC_CONST;