summaryrefslogtreecommitdiff
path: root/windows/gui.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2014-02-08 22:43:54 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2014-02-08 22:43:54 +0000
commit3d7cd77982d79ff798a92ebe7f3c0b2a52042cdf (patch)
tree43fb131d4c23d6d9f177c135291c4ad8ea102953 /windows/gui.c
parent2cd2e5b0541e7067c908e88f446b7cc56095253b (diff)
downloadnetsurf-3d7cd77982d79ff798a92ebe7f3c0b2a52042cdf.tar.gz
netsurf-3d7cd77982d79ff798a92ebe7f3c0b2a52042cdf.tar.bz2
Simplify local history interface.
Diffstat (limited to 'windows/gui.c')
-rw-r--r--windows/gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/gui.c b/windows/gui.c
index 6ac4f6155..ee8b4ed1f 100644
--- a/windows/gui.c
+++ b/windows/gui.c
@@ -853,7 +853,7 @@ nsws_window_command(HWND hwnd,
case IDM_NAV_BACK:
if ((gw->bw != NULL) &&
(history_back_available(gw->bw->history))) {
- history_back(gw->bw, gw->bw->history);
+ history_back(gw->bw->history, false);
}
nsws_window_update_forward_back(gw);
break;
@@ -861,7 +861,7 @@ nsws_window_command(HWND hwnd,
case IDM_NAV_FORWARD:
if ((gw->bw != NULL) &&
(history_forward_available(gw->bw->history))) {
- history_forward(gw->bw, gw->bw->history);
+ history_forward(gw->bw->history, false);
}
nsws_window_update_forward_back(gw);
break;