[gnome-panel] panel: Fix generation of enums GSettings schemas



commit 1da2291670fa485d4d748926babf155d4831fe77
Author: Vincent Untz <vuntz gnome org>
Date:   Mon Mar 28 13:38:07 2011 +0530

    panel: Fix generation of enums GSettings schemas
    
    Orientation is not a flag, really. Thanks Ryan for the tip on the fix!

 gnome-panel/panel-enums-gsettings.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gnome-panel/panel-enums-gsettings.h b/gnome-panel/panel-enums-gsettings.h
index 6ac6c1c..4a422ad 100644
--- a/gnome-panel/panel-enums-gsettings.h
+++ b/gnome-panel/panel-enums-gsettings.h
@@ -34,7 +34,7 @@ typedef enum {
 	PANEL_OBJECT_PACK_END   = 1
 } PanelObjectPack;
 
-typedef enum {
+typedef enum { /*< flags=0 >*/
 	PANEL_ORIENTATION_TOP    = 1 << 0,
 	PANEL_ORIENTATION_RIGHT  = 1 << 1,
 	PANEL_ORIENTATION_BOTTOM = 1 << 2,



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