diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/html.cc | 2 | ||||
-rw-r--r-- | src/nav.c | 8 | ||||
-rw-r--r-- | src/nav.h | 1 |
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) { @@ -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) @@ -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); |