summaryrefslogtreecommitdiff
path: root/frontends/atari/gui.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-01-21 16:49:14 +0000
committerVincent Sanders <vince@kyllikki.org>2017-01-21 16:49:14 +0000
commitb23f55c81bca21de7841111ace809df0f6408d65 (patch)
tree2c7490c6936d7c68d1974aae1ec669f1a48e5abd /frontends/atari/gui.c
parente96bf013394c0dd06cb25e666e8c68d22c12a318 (diff)
downloadnetsurf-b23f55c81bca21de7841111ace809df0f6408d65.tar.gz
netsurf-b23f55c81bca21de7841111ace809df0f6408d65.tar.bz2
fix warnings and errors in atari frontend
Diffstat (limited to 'frontends/atari/gui.c')
-rw-r--r--frontends/atari/gui.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/frontends/atari/gui.c b/frontends/atari/gui.c
index 1cf51d31d..d4a6915cd 100644
--- a/frontends/atari/gui.c
+++ b/frontends/atari/gui.c
@@ -386,13 +386,13 @@ static void atari_window_reformat(struct gui_window *gw)
static void gui_window_redraw_window(struct gui_window *gw)
{
- CMP_BROWSER b;
- GRECT rect;
- if (gw == NULL)
- return;
- b = gw->browser;
- window_get_grect(gw->root, BROWSER_AREA_CONTENT, &rect);
- window_schedule_redraw_grect(gw->root, &rect);
+ //CMP_BROWSER b;
+ GRECT rect;
+ if (gw == NULL)
+ return;
+ //b = gw->browser;
+ window_get_grect(gw->root, BROWSER_AREA_CONTENT, &rect);
+ window_schedule_redraw_grect(gw->root, &rect);
}
static void gui_window_update_box(struct gui_window *gw, const struct rect *rect)