From f9c848e9851713d7a33962b9b4768c0a0d1751f1 Mon Sep 17 00:00:00 2001 From: inmarket Date: Sun, 8 Jul 2018 11:19:43 +1000 Subject: Change color_t to gColor --- src/gwin/gwin_widget.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/gwin/gwin_widget.h') diff --git a/src/gwin/gwin_widget.h b/src/gwin/gwin_widget.h index c74eb877..309b62ec 100644 --- a/src/gwin/gwin_widget.h +++ b/src/gwin/gwin_widget.h @@ -35,10 +35,10 @@ struct GWidgetObject; * @{ */ typedef struct GColorSet { - color_t text; /**< The text color */ - color_t edge; /**< The edge color */ - color_t fill; /**< The fill color */ - color_t progress; /**< The color of progress bars */ + gColor text; /**< The text color */ + gColor edge; /**< The edge color */ + gColor fill; /**< The fill color */ + gColor progress; /**< The color of progress bars */ } GColorSet; /** @} */ @@ -50,8 +50,8 @@ typedef struct GColorSet { * @{ */ typedef struct GWidgetStyle { - color_t background; /**< The window background color */ - color_t focus; /**< The color when a widget is focused */ + gColor background; /**< The window background color */ + gColor focus; /**< The color when a widget is focused */ GColorSet enabled; /**< The colors when enabled */ GColorSet disabled; /**< The colors when disabled */ GColorSet pressed; /**< The colors when pressed */ -- cgit v1.2.3