[gimp] app: Unwrap enum constant definition to a single line



commit 499b87d14dfb8bbdb9c0ee40c6fc553c40f0c9da
Author: Mukund Sivaraman <muks banu com>
Date:   Fri May 2 23:10:31 2014 +0530

    app: Unwrap enum constant definition to a single line
    
    gimp-mkenums prints a parse error otherwise though it seems to generate
    the correct output.

 app/core/core-enums.h |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)
---
diff --git a/app/core/core-enums.h b/app/core/core-enums.h
index 5bd31a5..fd0f2e2 100644
--- a/app/core/core-enums.h
+++ b/app/core/core-enums.h
@@ -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;
 
 


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