aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/html.cc2
-rw-r--r--src/nav.c8
-rw-r--r--src/nav.h1
3 files changed, 1 insertions, 10 deletions
diff --git a/src/html.cc b/src/html.cc
index 4fd6ab91..3f5a10ba 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -1218,7 +1218,7 @@ static bool Html_match_tag(const char *tagstr, char *tag, int tagsize)
/*
* This function is called after popping the stack, to
- * handle nested DwPage widgets.
+ * handle nested Textblock widgets.
*/
static void Html_eventually_pop_dw(DilloHtml *html, bool hand_over_break)
{
diff --git a/src/nav.c b/src/nav.c
index 441d5997..20d19613 100644
--- a/src/nav.c
+++ b/src/nav.c
@@ -445,14 +445,6 @@ void a_Nav_push_nw(BrowserWindow *bw, const DilloUrl *url)
}
/*
- * Wraps a_Nav_push to match 'DwPage->link' function type
- */
-void a_Nav_vpush(void *vbw, const DilloUrl *url)
-{
- a_Nav_push(vbw, url);
-}
-
-/*
* Send the browser back to previous page
*/
void a_Nav_back(BrowserWindow *bw)
diff --git a/src/nav.h b/src/nav.h
index 65c603b5..41e99836 100644
--- a/src/nav.h
+++ b/src/nav.h
@@ -16,7 +16,6 @@ extern "C" {
void a_Nav_redirection0(BrowserWindow *bw, const DilloUrl *new_url);
void a_Nav_push(BrowserWindow *bw, const DilloUrl *url);
void a_Nav_push_nw(BrowserWindow *bw, const DilloUrl *url);
-void a_Nav_vpush(void *vbw, const DilloUrl *url);
void a_Nav_repush(BrowserWindow *bw);
void a_Nav_back(BrowserWindow *bw);
void a_Nav_forw(BrowserWindow *bw);