summaryrefslogtreecommitdiff
path: root/atari/hotlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'atari/hotlist.h')
-rwxr-xr-xatari/hotlist.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/atari/hotlist.h b/atari/hotlist.h
index 70b4d8a70..9fbf38932 100755
--- a/atari/hotlist.h
+++ b/atari/hotlist.h
@@ -19,13 +19,13 @@
#ifndef NS_ATARI_HOTLIST_H
#define NS_ATARI_HOTLIST_H
#include <stdbool.h>
-#include <windom.h>
#include "desktop/tree.h"
+#include "atari/gemtk/gemtk.h"
#include "atari/treeview.h"
/* The hotlist window, toolbar and treeview data. */
struct atari_hotlist {
- WINDOW * window;
+ GUIWIN * window;
NSTREEVIEW tv; /*< The hotlist treeview handle. */
bool open;
bool init;
@@ -40,10 +40,7 @@ void hotlist_close( void );
void hotlist_destroy( void );
void atari_hotlist_add_page( const char * url, const char * title );
-inline void hotlist_redraw( void );
-inline void hotlist_redraw( void )
-{
- atari_treeview_redraw( hl.tv );
-}
+void hotlist_redraw( void );
+
#endif