Code

Stop background rendering once crash handler is triggered.
[inkscape.git] / src / widgets / sp-color-wheel.h
index 5b01f1a8871734d30466716bf91d765039e711bb..d62c267827f8181309152e7996495e868aa3dc79 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
 
@@ -77,4 +77,4 @@ bool sp_color_wheel_is_adjusting( SPColorWheel *wheel );
   fill-column:99
   End:
 */
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :