diff options
author | inmarket <andrewh@inmarket.com.au> | 2015-10-06 12:02:00 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2015-10-06 12:02:00 +1000 |
commit | 03bd91f728d0c42252ba6675c34c3eb382cabbb6 (patch) | |
tree | cc2faebfbdec294d3a2d5b26db8d793b8982fce4 /demos | |
parent | 25482f5c901e8c20d8b1110ea802f61dfac98ec8 (diff) | |
download | uGFX-03bd91f728d0c42252ba6675c34c3eb382cabbb6.tar.gz uGFX-03bd91f728d0c42252ba6675c34c3eb382cabbb6.tar.bz2 uGFX-03bd91f728d0c42252ba6675c34c3eb382cabbb6.zip |
structure tidyup
Diffstat (limited to 'demos')
-rw-r--r-- | demos/modules/gwin/widgets/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/modules/gwin/widgets/main.c b/demos/modules/gwin/widgets/main.c index d5bfb6d2..35a6c1fd 100644 --- a/demos/modules/gwin/widgets/main.c +++ b/demos/modules/gwin/widgets/main.c @@ -55,7 +55,7 @@ static const GWidgetStyle YellowWidgetStyle = { HTML2COLOR(0x0000FF), // text HTML2COLOR(0x404040), // edge HTML2COLOR(0xE0E0E0), // fill - HTML2COLOR(0xE0E0E0), // progress - inactive area + HTML2COLOR(0xE0E0E0) // progress - inactive area }, // disabled color set @@ -63,7 +63,7 @@ static const GWidgetStyle YellowWidgetStyle = { HTML2COLOR(0xC0C0C0), // text HTML2COLOR(0x808080), // edge HTML2COLOR(0xE0E0E0), // fill - HTML2COLOR(0xC0E0C0), // progress - active area + HTML2COLOR(0xC0E0C0) // progress - active area }, // pressed color set @@ -72,7 +72,7 @@ static const GWidgetStyle YellowWidgetStyle = { HTML2COLOR(0x404040), // edge HTML2COLOR(0x808080), // fill HTML2COLOR(0x00E000), // progress - active area - }, + } }; /* The variables we need */ |