trivial: Fix the signedness of boolean fields
The standard old kludge with gboolean being signed, not unsigned. Encountered while printing the values for debugging. https://bugzilla.gnome.org/show_bug.cgi?id=644306
This commit is contained in:
@ -59,12 +59,12 @@ struct _StWidgetPrivate
|
||||
|
||||
StThemeNodeTransition *transition_animation;
|
||||
|
||||
gboolean is_style_dirty : 1;
|
||||
gboolean draw_bg_color : 1;
|
||||
gboolean draw_border_internal : 1;
|
||||
gboolean track_hover : 1;
|
||||
gboolean hover : 1;
|
||||
gboolean can_focus : 1;
|
||||
guint is_style_dirty : 1;
|
||||
guint draw_bg_color : 1;
|
||||
guint draw_border_internal : 1;
|
||||
guint track_hover : 1;
|
||||
guint hover : 1;
|
||||
guint can_focus : 1;
|
||||
|
||||
gulong texture_file_changed_id;
|
||||
|
||||
|
Reference in New Issue
Block a user