about summary refs log tree commit diff stats
path: root/xxxterm.c
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2011-10-06 14:44:38 -0500
committerMarco Peereboom <marco@conformal.com>2011-10-06 14:44:38 -0500
commite4b54301791da2d0aebabb79663aa2bfcc8eb3da (patch)
tree5073689fa2f63e9c0a1113cd4df0c4fcfd6b23e2 /xxxterm.c
parent2263b87906894bd95ef494f6ac4bdbc2b4c8410c (diff)
downloadxombrero-e4b54301791da2d0aebabb79663aa2bfcc8eb3da.tar.gz
delete some dead code
This code was used when a url failed to load but confused things.  It
was disabled many moons ago so it is time to kill it.
Diffstat (limited to 'xxxterm.c')
-rw-r--r--xxxterm.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/xxxterm.c b/xxxterm.c
index 08d9007..a88dfe2 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -6858,28 +6858,6 @@ notify_load_status_cb(WebKitWebView* wview, GParamSpec* pspec, struct tab *t)
 	    can_go_forward_for_real(t));
 }
 
-#if 0
-gboolean
-notify_load_error_cb(WebKitWebView* wview, WebKitWebFrame *web_frame,
-    gchar *uri, gpointer web_error,struct tab *t)
-{
-	/*
-	 * XXX this function is wrong
-	 * it overwrites perfectly good urls with garbage on load errors
-	 * those happen often when popups fail to resolve dns
-	 */
-	if (t->tmp_uri)
-		g_free(t->tmp_uri);
-	t->tmp_uri = g_strdup(uri);
-	gtk_entry_set_text(GTK_ENTRY(t->uri_entry), uri);
-	gtk_label_set_text(GTK_LABEL(t->label), "(untitled)");
-	gtk_window_set_title(GTK_WINDOW(main_window), XT_NAME);
-	set_status(t, uri, XT_STATUS_NOTHING);
-
-	return (FALSE);
-}
-#endif
-
 void
 notify_title_cb(WebKitWebView* wview, GParamSpec* pspec, struct tab *t)
 {
@@ -9295,13 +9273,6 @@ create_new_tab(char *title, struct undo *u, int focus, int position)
 	    (char *)NULL);
 	g_signal_connect(t->wv,
 	    "notify::load-status", G_CALLBACK(notify_load_status_cb), t);
-	/*
-	 * XXX this puts invalid url in uri_entry and that is undesirable
-	 */
-#if 0
-	g_signal_connect(t->wv,
-	    "load-error", G_CALLBACK(notify_load_error_cb), t);
-#endif
 	g_signal_connect(t->wv,
 	    "notify::title", G_CALLBACK(notify_title_cb), t);