summaryrefslogtreecommitdiff
path: root/atari/history.h
diff options
context:
space:
mode:
Diffstat (limited to 'atari/history.h')
-rwxr-xr-xatari/history.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/atari/history.h b/atari/history.h
index bfea9ec1d..6185e2ac0 100755
--- a/atari/history.h
+++ b/atari/history.h
@@ -20,12 +20,12 @@
#define NS_ATARI_HISTORY_H
#include <stdbool.h>
-#include <windom.h>
#include "desktop/tree.h"
#include "atari/treeview.h"
+#include "atari/gemtk/gemtk.h"
struct s_atari_global_history {
- WINDOW * window;
+ GUIWIN *window; /*< The GEMTK window ref */
NSTREEVIEW tv; /*< The history treeview handle. */
bool open;
bool init;
@@ -38,11 +38,8 @@ void global_history_destroy( void );
void global_history_open( void );
void global_history_close( void );
-inline void global_history_redraw( void );
-inline void global_history_redraw( void )
-{
- atari_treeview_redraw( gl_history.tv );
-}
+void global_history_redraw( void );
+
#endif