From 88ae1ff267c541ded537672ac7b7f29308ad701d Mon Sep 17 00:00:00 2001 From: Chris Young Date: Thu, 2 Jun 2016 00:44:20 +0100 Subject: Ensure variables are declared correctly --- frontends/amiga/menu.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'frontends/amiga/menu.c') diff --git a/frontends/amiga/menu.c b/frontends/amiga/menu.c index 4fa5ba19f..e1017cd1f 100644 --- a/frontends/amiga/menu.c +++ b/frontends/amiga/menu.c @@ -87,12 +87,16 @@ enum { NSA_GLYPH_MAX }; -BOOL menualreadyinit; +struct gui_window_2 *ami_menu_window_close = NULL; +bool ami_menu_check_toggled = false; + +static BOOL menualreadyinit; +static Object *menu_glyph[NSA_GLYPH_MAX]; +static int menu_glyph_width[NSA_GLYPH_MAX]; +static bool menu_glyphs_loaded = false; + const char * const netsurf_version; const char * const verdate; -Object *menu_glyph[NSA_GLYPH_MAX]; -int menu_glyph_width[NSA_GLYPH_MAX]; -bool menu_glyphs_loaded = false; static nserror ami_menu_scan(struct tree *tree, struct gui_window_2 *gwin); void ami_menu_arexx_scan(struct gui_window_2 *gwin); -- cgit v1.2.3