summaryrefslogtreecommitdiff
path: root/frontends/atari/hotlist.c
diff options
context:
space:
mode:
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);
}