summaryrefslogtreecommitdiff
path: root/surf.c
diff options
context:
space:
mode:
authorEnno Boland (tox) <tox@s01.de>2009-10-21 10:06:55 +0200
committerEnno Boland (tox) <tox@s01.de>2009-10-21 10:06:55 +0200
commitc82fff2dd33346d0acbfed291d54ec9845245249 (patch)
tree4c50caed60be3496786776a0e1836aed7fbe1f0d /surf.c
parentb483f49b2004ba2bfbd122fa462f42e3ff79ce92 (diff)
downloadsurf-c82fff2dd33346d0acbfed291d54ec9845245249.tar.gz
surf-c82fff2dd33346d0acbfed291d54ec9845245249.tar.bz2
surf-c82fff2dd33346d0acbfed291d54ec9845245249.zip
using geturi() where possible.
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/surf.c b/surf.c
index 50c3be0..6cc29c4 100644
--- a/surf.c
+++ b/surf.c
@@ -79,6 +79,7 @@ static void die(char *str);
static void download(WebKitDownload *o, GParamSpec *pspec, Client *c);
static void drawindicator(Client *c);
static gboolean exposeindicator(GtkWidget *w, GdkEventExpose *e, Client *c);
+static char *geturi(Client *c);
static const char *getatom(Client *c, Atom a);
static gboolean initdownload(WebKitWebView *v, WebKitDownload *o, Client *c);
static void itemclick(GtkMenuItem *mi, Client *c);
@@ -175,7 +176,7 @@ clipboard(Client *c, const Arg *arg) {
if(paste)
gtk_clipboard_request_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), pasteuri, c);
else
- gtk_clipboard_set_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), webkit_web_view_get_uri(c->view), -1);
+ gtk_clipboard_set_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), geturi(c), -1);
}
void
@@ -388,7 +389,7 @@ linkhover(WebKitWebView *v, const char* t, const char* l, Client *c) {
void
loadcommit(WebKitWebView *view, WebKitWebFrame *f, Client *c) {
- setatom(c, uriprop, webkit_web_view_get_uri(c->view));
+ setatom(c, uriprop, geturi(c));
reloadcookies();
}