aboutsummaryrefslogtreecommitdiffstats
path: root/demos/3rdparty/notepad-2/notepadApp.c
diff options
context:
space:
mode:
authorJoel Bodenmann <joel.bodenmann@simulton.com>2019-04-10 17:33:15 +0200
committerJoel Bodenmann <joel.bodenmann@simulton.com>2019-04-10 17:33:15 +0200
commit785047b0aa1d43d5f33ae69d7e0ed708df6db0bd (patch)
treee05a8c17ec9565e458b1cfce8b17e46b84381f57 /demos/3rdparty/notepad-2/notepadApp.c
parent509fc7501e7bd30b1b314fc0d4838d7cdf6ac621 (diff)
downloaduGFX-785047b0aa1d43d5f33ae69d7e0ed708df6db0bd.tar.gz
uGFX-785047b0aa1d43d5f33ae69d7e0ed708df6db0bd.tar.bz2
uGFX-785047b0aa1d43d5f33ae69d7e0ed708df6db0bd.zip
Introduce type gImage to replace v2.x gdispImage
Diffstat (limited to 'demos/3rdparty/notepad-2/notepadApp.c')
-rw-r--r--demos/3rdparty/notepad-2/notepadApp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/3rdparty/notepad-2/notepadApp.c b/demos/3rdparty/notepad-2/notepadApp.c
index 1bf914a6..c89562ee 100644
--- a/demos/3rdparty/notepad-2/notepadApp.c
+++ b/demos/3rdparty/notepad-2/notepadApp.c
@@ -61,7 +61,7 @@ static GButtonObject btnClose;
/* static GButtonObject btnYes, btnNo; // Reserved for future use */
// Image object
-static gdispImage toolbarImageFilmstrip;
+static gImage toolbarImageFilmstrip;
static gColor myColors[] = { GFX_BLACK, GFX_RED, GFX_GREEN, GFX_BLUE, GFX_CYAN, GFX_MAGENTA, GFX_YELLOW, GFX_WHITE };