summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnno Boland (Gottox) <gottox@s01.de>2009-06-07 12:06:19 +0200
committerEnno Boland (Gottox) <gottox@s01.de>2009-06-07 12:06:19 +0200
commit08b45f411a39c07e5e0751c75abf5323c3c888d7 (patch)
treee526c29a327df89c9f6e3efd7e1fdaa95a342292
parentf2059fdb306f3d98e492a712bf73159fcbf32921 (diff)
downloadsurf-08b45f411a39c07e5e0751c75abf5323c3c888d7.tar.gz
surf-08b45f411a39c07e5e0751c75abf5323c3c888d7.tar.bz2
surf-08b45f411a39c07e5e0751c75abf5323c3c888d7.zip
removing urllist. bookmarking should be done externally.
-rw-r--r--surf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/surf.c b/surf.c
index 24b694a..1ccb1cc 100644
--- a/surf.c
+++ b/surf.c
@@ -20,7 +20,7 @@
Display *dpy;
Atom urlprop;
typedef struct Client {
- GtkWidget *win, *scroll, *vbox, *urlbar, *urllist, *searchbar;
+ GtkWidget *win, *scroll, *vbox, *urlbar, *searchbar;
WebKitWebView *view;
gchar *title;
gint progress;
@@ -80,7 +80,6 @@ destroyclient(Client *c) {
gtk_widget_destroy(GTK_WIDGET(webkit_web_view_new()));
gtk_widget_destroy(c->scroll);
gtk_widget_destroy(c->urlbar);
- gtk_widget_destroy(c->urllist);
gtk_widget_destroy(c->searchbar);
gtk_widget_destroy(c->vbox);
gtk_widget_destroy(c->win);