app: Unwrap enum constant definition to a single line

gimp-mkenums prints a parse error otherwise though it seems to generate
the correct output.
This commit is contained in:
Mukund Sivaraman
2014-05-02 23:10:31 +05:30
parent e2d72211cf
commit 499b87d14d

View File

@ -47,10 +47,7 @@ typedef enum /*< pdb-skip >*/
GIMP_COMPONENT_BLUE = 1 << 2,
GIMP_COMPONENT_ALPHA = 1 << 3,
GIMP_COMPONENT_ALL = (GIMP_COMPONENT_RED |
GIMP_COMPONENT_GREEN |
GIMP_COMPONENT_BLUE |
GIMP_COMPONENT_ALPHA)
GIMP_COMPONENT_ALL = (GIMP_COMPONENT_RED | GIMP_COMPONENT_GREEN | GIMP_COMPONENT_BLUE | GIMP_COMPONENT_ALPHA)
} GimpComponentMask;