app, libgimp: forgot to add /*< pdb-skip >*/ to enum GimpBucketFillMode

so it was still exported to libgimp.
This commit is contained in:
Michael Natterer 2019-01-02 16:18:28 +01:00
parent 07e46abb72
commit b2cb334b47
4 changed files with 1 additions and 24 deletions

View File

@ -86,7 +86,7 @@ typedef enum /*< pdb-skip >*/
GType gimp_bucket_fill_mode_get_type (void) G_GNUC_CONST;
typedef enum
typedef enum /*< pdb-skip >*/
{
GIMP_BUCKET_FILL_FG, /*< desc="FG color fill" >*/
GIMP_BUCKET_FILL_BG, /*< desc="BG color fill" >*/

View File

@ -8,7 +8,6 @@ static const GimpGetTypeFunc get_type_funcs[] =
gimp_blend_mode_get_type,
gimp_brush_application_mode_get_type,
gimp_brush_generated_shape_get_type,
gimp_bucket_fill_mode_get_type,
gimp_cap_style_get_type,
gimp_channel_ops_get_type,
gimp_channel_type_get_type,
@ -75,7 +74,6 @@ static const gchar * const type_names[] =
"GimpBlendMode",
"GimpBrushApplicationMode",
"GimpBrushGeneratedShape",
"GimpBucketFillMode",
"GimpCapStyle",
"GimpChannelOps",
"GimpChannelType",

View File

@ -35,18 +35,6 @@ typedef enum
} GimpBrushApplicationMode;
#define GIMP_TYPE_BUCKET_FILL_MODE (gimp_bucket_fill_mode_get_type ())
GType gimp_bucket_fill_mode_get_type (void) G_GNUC_CONST;
typedef enum
{
GIMP_BUCKET_FILL_FG,
GIMP_BUCKET_FILL_BG,
GIMP_BUCKET_FILL_PATTERN
} GimpBucketFillMode;
#define GIMP_TYPE_CONVERT_DITHER_TYPE (gimp_convert_dither_type_get_type ())
GType gimp_convert_dither_type_get_type (void) G_GNUC_CONST;

View File

@ -843,15 +843,6 @@ package Gimp::CodeGen::enums;
GIMP_LAYER_MODE_SPLIT => '60',
GIMP_LAYER_MODE_PASS_THROUGH => '61' }
},
GimpBucketFillMode =>
{ contig => 1,
header => 'core/core-enums.h',
symbols => [ qw(GIMP_BUCKET_FILL_FG GIMP_BUCKET_FILL_BG
GIMP_BUCKET_FILL_PATTERN) ],
mapping => { GIMP_BUCKET_FILL_FG => '0',
GIMP_BUCKET_FILL_BG => '1',
GIMP_BUCKET_FILL_PATTERN => '2' }
},
GimpConvertDitherType =>
{ contig => 1,
header => 'core/core-enums.h',