Code

peeled back the gboolean code as it hit on some complexity theory principles...
[inkscape.git] / src / widgets / sp-color-wheel.h
index 5b01f1a8871734d30466716bf91d765039e711bb..d8fceb9085f23f0df44d63cf118167daf7ce045a 100644 (file)
 struct SPColorWheel {
     GtkWidget widget;
 
-    bool dragging : 1;
+    gboolean dragging : 1;
 
-    bool _inTriangle;
-    bool _triDirty;
+    gboolean _inTriangle;
+    gboolean _triDirty;
     GdkRegion* _triangle;
     GdkPoint _triPoints[3];
     guchar *_triImage;
@@ -64,7 +64,7 @@ GtkWidget *sp_color_wheel_new ();
 void sp_color_wheel_get_color( SPColorWheel *wheel, SPColor* color );
 void sp_color_wheel_set_color( SPColorWheel *wheel, const SPColor* color );
 
-bool sp_color_wheel_is_adjusting( SPColorWheel *wheel );
+gboolean sp_color_wheel_is_adjusting( SPColorWheel *wheel );
 
 #endif