diff options
author | Joel Bodenmann <joel.bodenmann@simulton.com> | 2019-04-10 17:33:15 +0200 |
---|---|---|
committer | Joel Bodenmann <joel.bodenmann@simulton.com> | 2019-04-10 17:33:15 +0200 |
commit | 785047b0aa1d43d5f33ae69d7e0ed708df6db0bd (patch) | |
tree | e05a8c17ec9565e458b1cfce8b17e46b84381f57 /demos/modules/gwin | |
parent | 509fc7501e7bd30b1b314fc0d4838d7cdf6ac621 (diff) | |
download | uGFX-785047b0aa1d43d5f33ae69d7e0ed708df6db0bd.tar.gz uGFX-785047b0aa1d43d5f33ae69d7e0ed708df6db0bd.tar.bz2 uGFX-785047b0aa1d43d5f33ae69d7e0ed708df6db0bd.zip |
Introduce type gImage to replace v2.x gdispImage
Diffstat (limited to 'demos/modules/gwin')
-rw-r--r-- | demos/modules/gwin/widgets/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/modules/gwin/widgets/main.c b/demos/modules/gwin/widgets/main.c index 52ffdc91..a4473596 100644 --- a/demos/modules/gwin/widgets/main.c +++ b/demos/modules/gwin/widgets/main.c @@ -97,7 +97,7 @@ static GHandle ghRadioBlack, ghRadioWhite, ghRadioYellow; static GHandle ghList1, ghList2, ghList3, ghList4; static GHandle ghImage1; static GHandle ghProgressbar1; -static gdispImage imgYesNo; +static gImage imgYesNo; /* Some useful macros */ #define ScrWidth gdispGetWidth() |