app: remove /*< skip >*/ and /*< pdb-skip >*/ annotations from enums

where their headers are not even parsed by the affected scripts.
This commit is contained in:
Michael Natterer 2016-01-07 17:44:46 +01:00
parent 985cc3e1a3
commit 789e9f2cf4
3 changed files with 10 additions and 8 deletions

View File

@ -23,7 +23,7 @@
GType gimp_plug_in_image_type_get_type (void) G_GNUC_CONST;
typedef enum /*< pdb-skip >*/
typedef enum
{
GIMP_PLUG_IN_RGB_IMAGE = 1 << 0,
GIMP_PLUG_IN_GRAY_IMAGE = 1 << 1,
@ -38,7 +38,7 @@ typedef enum /*< pdb-skip >*/
GType gimp_plug_in_call_mode_get_type (void) G_GNUC_CONST;
typedef enum /*< pdb-skip >*/
typedef enum
{
GIMP_PLUG_IN_CALL_NONE,
GIMP_PLUG_IN_CALL_RUN,
@ -51,7 +51,7 @@ typedef enum /*< pdb-skip >*/
GType gimp_file_procedure_group_get_type (void) G_GNUC_CONST;
typedef enum /*< pdb-skip >*/
typedef enum
{
GIMP_FILE_PROCEDURE_GROUP_NONE,
GIMP_FILE_PROCEDURE_GROUP_ANY,

View File

@ -23,7 +23,7 @@
GType gimp_text_box_mode_get_type (void) G_GNUC_CONST;
typedef enum /*< pdb-skip >*/
typedef enum
{
GIMP_TEXT_BOX_DYNAMIC, /*< desc="Dynamic" >*/
GIMP_TEXT_BOX_FIXED /*< desc="Fixed" >*/
@ -34,7 +34,7 @@ typedef enum /*< pdb-skip >*/
GType gimp_text_outline_get_type (void) G_GNUC_CONST;
typedef enum /*< pdb-skip >*/
typedef enum
{
GIMP_TEXT_OUTLINE_NONE,
GIMP_TEXT_OUTLINE_STROKE_ONLY,

View File

@ -21,13 +21,14 @@
#ifndef __VECTORS_ENUMS_H__
#define __VECTORS_ENUMS_H__
typedef enum /*< pdb-skip, skip >*/
typedef enum
{
GIMP_ANCHOR_ANCHOR,
GIMP_ANCHOR_CONTROL
} GimpAnchorType;
typedef enum /*< pdb-skip, skip >*/
typedef enum
{
GIMP_ANCHOR_FEATURE_NONE,
GIMP_ANCHOR_FEATURE_EDGE,
@ -35,10 +36,11 @@ typedef enum /*< pdb-skip, skip >*/
GIMP_ANCHOR_FEATURE_SYMMETRIC
} GimpAnchorFeatureType;
typedef enum /*< pdb-skip, skip >*/
typedef enum
{
EXTEND_SIMPLE,
EXTEND_EDITABLE
} GimpVectorExtendMode;
#endif /* __VECTORS_ENUMS_H__ */