[gimp] Make class and instance structs public



commit b5b8aff42d581ffb11c5a790d0de0e907ac36741
Author: Michael Natterer <mitch gimp org>
Date:   Mon Sep 14 21:38:30 2009 +0200

    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 276956f..1b59155 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 81ebfd5..e537111 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;
 



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