summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/browser.c10
-rw-r--r--desktop/browser.h5
2 files changed, 2 insertions, 13 deletions
diff --git a/desktop/browser.c b/desktop/browser.c
index f6c157697..84b60ff79 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -425,16 +425,6 @@ void browser_window_destroy(struct browser_window *bw)
}
-
-void browser_window_back(struct browser_window* bw)
-{
-}
-
-void browser_window_forward(struct browser_window* bw)
-{
-}
-
-
/**
* Callback for fetchcache() for download window fetches.
*/
diff --git a/desktop/browser.h b/desktop/browser.h
index 3f2bae61a..e25b26fbe 100644
--- a/desktop/browser.h
+++ b/desktop/browser.h
@@ -97,9 +97,6 @@ void browser_window_go_post(struct browser_window *bw, const char *url,
void browser_window_stop(struct browser_window *bw);
void browser_window_destroy(struct browser_window *bw);
-void browser_window_back(struct browser_window* bw);
-void browser_window_forward(struct browser_window* bw);
-
int browser_window_action(struct browser_window* bw, struct browser_action* act);
void box_under_area(struct box* box, unsigned long x, unsigned long y, unsigned long ox, unsigned long oy,
@@ -119,5 +116,7 @@ struct history *history_create(void);
void history_add(struct history *history, struct content *content);
void history_update(struct history *history, struct content *content);
void history_destroy(struct history *history);
+void history_back(struct browser_window *bw, struct history *history);
+void history_forward(struct browser_window *bw, struct history *history);
#endif