summaryrefslogtreecommitdiff
path: root/atari/hotlist.h
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-09-22 03:10:12 +0200
committerOle Loots <ole@monochrom.net>2013-09-22 03:10:12 +0200
commita19b32703b989d8eb3c3aeb14dc5bf824d1a5e72 (patch)
tree8c425551bd1e20dac5d714479fbaf626ccca2ab3 /atari/hotlist.h
parent4426e8a9eaa2fd180e88123f750e74ecb8b77625 (diff)
downloadnetsurf-a19b32703b989d8eb3c3aeb14dc5bf824d1a5e72.tar.gz
netsurf-a19b32703b989d8eb3c3aeb14dc5bf824d1a5e72.tar.bz2
Fixed warnings for incomptible pointer type
The API expects to receive core_window as window handle now.
Diffstat (limited to 'atari/hotlist.h')
-rw-r--r--atari/hotlist.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/atari/hotlist.h b/atari/hotlist.h
index 2bcda5f01..d3ef02292 100644
--- a/atari/hotlist.h
+++ b/atari/hotlist.h
@@ -26,7 +26,8 @@
struct atari_hotlist {
GUIWIN * window;
- ATARI_TREEVIEW_PTR tv;/*< The hotlist treeview handle. */
+ //ATARI_TREEVIEW_PTR tv;/*< The hotlist treeview handle. */
+ struct core_window *tv;
bool init;
char path[PATH_MAX];
};