Make class and instance structs public

There is no need to keep these specific structs hidden and
gtk-doc likes it better that way.
This commit is contained in:
Michael Natterer 2009-09-14 21:38:30 +02:00
parent 17f345fa1a
commit b5b8aff42d
2 changed files with 12 additions and 13 deletions

View File

@ -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,

View File

@ -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;