diff options
author | rbuj <[email protected]> | 2020-05-10 11:54:23 +0200 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2020-06-16 19:52:35 +0200 |
commit | 3774d5da2d07fc759305b53192a3e8898c5971c7 (patch) | |
tree | 3818ac6dc35d0d5fd1238e338536d80f6ed1415d /src/ui/theme-parser.c | |
parent | f96255beb1b23e47048d1e0479fc53ef4c36b747 (diff) | |
download | marco-3774d5da2d07fc759305b53192a3e8898c5971c7.tar.bz2 marco-3774d5da2d07fc759305b53192a3e8898c5971c7.tar.xz |
Remove enum conversion warnings
Diffstat (limited to 'src/ui/theme-parser.c')
-rw-r--r-- | src/ui/theme-parser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/theme-parser.c b/src/ui/theme-parser.c index a328fd06..66130459 100644 --- a/src/ui/theme-parser.c +++ b/src/ui/theme-parser.c @@ -2340,7 +2340,7 @@ parse_draw_op_element (GMarkupParseContext *context, const char *height; const char *filled; gboolean filled_val; - GtkStateType state_val; + GtkStateFlags state_val; GtkShadowType shadow_val; GtkArrowType arrow_val; @@ -2430,7 +2430,7 @@ parse_draw_op_element (GMarkupParseContext *context, const char *y; const char *width; const char *height; - GtkStateType state_val; + GtkStateFlags state_val; GtkShadowType shadow_val; if (!locate_attributes (context, element_name, attribute_names, attribute_values, @@ -2498,7 +2498,7 @@ parse_draw_op_element (GMarkupParseContext *context, const char *x; const char *y1; const char *y2; - GtkStateType state_val; + GtkStateFlags state_val; if (!locate_attributes (context, element_name, attribute_names, attribute_values, error, |