summaryrefslogtreecommitdiff
path: root/frontends/atari/hotlist.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/hotlist.c
parente96bf013394c0dd06cb25e666e8c68d22c12a318 (diff)
downloadnetsurf-b23f55c81bca21de7841111ace809df0f6408d65.tar.gz
netsurf-b23f55c81bca21de7841111ace809df0f6408d65.tar.bz2
fix warnings and errors in atari frontend
Diffstat (limited to 'frontends/atari/hotlist.c')
-rw-r--r--frontends/atari/hotlist.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/frontends/atari/hotlist.c b/frontends/atari/hotlist.c
index ee9385d7d..da599161b 100644
--- a/frontends/atari/hotlist.c
+++ b/frontends/atari/hotlist.c
@@ -25,9 +25,9 @@
#include "utils/log.h"
#include "utils/messages.h"
-#include "utils/utils.h"
#include "utils/nsoption.h"
#include "utils/nsurl.h"
+#include "netsurf/inttypes.h"
#include "netsurf/keypress.h"
#include "content/content.h"
#include "desktop/hotlist.h"
@@ -91,12 +91,12 @@ static void atari_hotlist_draw(struct core_window *cw, int x,
static void atari_hotlist_keypress(struct core_window *cw, uint32_t ucs4)
{
- GUIWIN *gemtk_win;
- GRECT area;
+ //GUIWIN *gemtk_win;
+ //GRECT area;
LOG("ucs4: %"PRIu32 , ucs4);
hotlist_keypress(ucs4);
- gemtk_win = atari_treeview_get_gemtk_window(cw);
- atari_treeview_get_grect(cw, TREEVIEW_AREA_CONTENT, &area);
+ //gemtk_win = atari_treeview_get_gemtk_window(cw);
+ //atari_treeview_get_grect(cw, TREEVIEW_AREA_CONTENT, &area);
//gemtk_wm_exec_redraw(gemtk_win, &area);
}