summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2009-11-09 21:45:26 +0000
committercorvid <corvid@lavabit.com>2009-11-09 21:45:26 +0000
commitb21902f413413061ac0987c692ad37a939c8fe26 (patch)
treef9464b0eec928cd3c19738363486949756b5b5ef
parent225e51094971a08af9f1ace50fab87525e775130 (diff)
rm unused a_Nav_vpush
-rw-r--r--src/nav.c8
-rw-r--r--src/nav.h1
2 files changed, 0 insertions, 9 deletions
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);