summaryrefslogtreecommitdiff
path: root/atari/history.c
diff options
context:
space:
mode:
Diffstat (limited to 'atari/history.c')
-rw-r--r--atari/history.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/atari/history.c b/atari/history.c
index 487030f65..90ed0b8ae 100644
--- a/atari/history.c
+++ b/atari/history.c
@@ -122,6 +122,7 @@ static short handle_event(GUIWIN *win, EVMULT_OUT *ev_out, short msg[8])
struct gui_window * gw;
char *cur_url = NULL;
char *cur_title = NULL;
+ short retval = 0;
LOG((""));
@@ -173,14 +174,14 @@ static short handle_event(GUIWIN *win, EVMULT_OUT *ev_out, short msg[8])
case WM_CLOSED:
atari_global_history_close();
+ retval = 1;
break;
default: break;
}
}
- // TODO: implement selectable objects in toolbar API:
- // ObjcChange( OC_TOOLBAR, win, buff[4], ~SELECTED, OC_MSG );
+ return(retval);
}