summaryrefslogtreecommitdiff
path: root/atari/history.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-09-26 01:24:49 +0200
committerOle Loots <ole@monochrom.net>2013-10-06 01:24:19 +0200
commit4f45f807f241683480a56a99b558b4b1d0f59332 (patch)
treea0d1f25ff91495e1d0bd34b6b48ec7093555b525 /atari/history.c
parent7f920600416871e24da272e5ce5e59d446a50ba7 (diff)
downloadnetsurf-4f45f807f241683480a56a99b558b4b1d0f59332.tar.gz
netsurf-4f45f807f241683480a56a99b558b4b1d0f59332.tar.bz2
Added about dialog, fixed scrolled treeview redraw.
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);
}