about summary refs log tree commit diff
path: root/surf.c
diff options
context:
space:
mode:
authorEnno Boland (Gottox) <gottox@s01.de>2009-06-06 17:35:58 +0200
committerEnno Boland (Gottox) <gottox@s01.de>2009-06-06 17:35:58 +0200
commit90289f602371acb058e1cb4140ac22d59af59e12 (patch)
tree93780d654e01cca3e22f438fcb7fb71edaaf4567 /surf.c
parentopening new windows works now. (diff)
downloadsurf-90289f602371acb058e1cb4140ac22d59af59e12.tar.gz
surf-90289f602371acb058e1cb4140ac22d59af59e12.tar.bz2
surf-90289f602371acb058e1cb4140ac22d59af59e12.zip
typo.
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/surf.c b/surf.c
index 8bf23f2..bc4aea1 100644
--- a/surf.c
+++ b/surf.c
@@ -45,7 +45,7 @@ static void progresschange(WebKitWebView *view, gint p, gpointer d);
 static void loadcommit(WebKitWebView *view, WebKitWebFrame *f, gpointer d);
 static void linkhover(WebKitWebView* page, const gchar* t, const gchar* l, gpointer d);
 static void destroyclient(Client *c);
-WebKitWebView newwindow(WebKitWebView  *v, WebKitWebFrame *f, gpointer d);
+static WebKitWebView *newwindow(WebKitWebView  *v, WebKitWebFrame *f, gpointer d);
 static gboolean decidewindow(WebKitWebView *view, WebKitWebFrame *f,
 		WebKitNetworkRequest *r, WebKitWebNavigationAction *n,
 		WebKitWebPolicyDecision *p, gpointer d);
@@ -131,10 +131,11 @@ decidewindow(WebKitWebView *view, WebKitWebFrame *f,
 	return TRUE;
 }
 
-WebKitWebView newwindow(WebKitWebView  *v, WebKitWebFrame *f, gpointer d) {
+WebKitWebView *
+newwindow(WebKitWebView  *v, WebKitWebFrame *f, gpointer d) {
 	/* TODO */
 	Client *c = newclient();
-	return *c->view;
+	return c->view;
 }
 
 void
@@ -204,7 +205,7 @@ destroyclient(Client *c) {
 	gtk_widget_destroy(c->scroll);
 	gtk_widget_destroy(c->vbox);
 	gtk_widget_destroy(c->urlbar);
-	gtk_widget_destroy(c->urllist);
+/*	gtk_widget_destroy(c->urllist);*/
 	gtk_widget_destroy(c->searchbar);
 	if(clients == c && c->next == NULL)
 		gtk_main_quit();