Code

Connector tool: make connectors avoid the convex hull of shapes.
[inkscape.git] / src / widgets / sp-color-wheel.h
index 5b01f1a8871734d30466716bf91d765039e711bb..699750bed62d40d0f3c5d0832fa337657dc78f97 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;
@@ -57,14 +57,14 @@ struct SPColorWheelClass {
     void (* changed) (SPColorWheel *wheel);
 };
 
-GtkType sp_color_wheel_get_type (void);
+GType sp_color_wheel_get_type(void);
 
 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