summaryrefslogtreecommitdiff
path: root/surf.c
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2015-11-18 17:42:51 +0100
committerQuentin Rameau <quinq@fifth.space>2015-11-20 00:34:20 +0100
commit60f574e4b7e27b321443a38343056ba04287d8e2 (patch)
treea4ab6a38c34fca1a4e4f22111b23250355a4520e /surf.c
parent0f3e3bf66986b0a9613b03c43ff204b1c009f6bc (diff)
downloadsurf-60f574e4b7e27b321443a38343056ba04287d8e2.tar.gz
surf-60f574e4b7e27b321443a38343056ba04287d8e2.tar.bz2
surf-60f574e4b7e27b321443a38343056ba04287d8e2.zip
Adapted titlechange()
Do not copy title strings, just carry over the const pointer.
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/surf.c b/surf.c
index 79a71fe..1b3a8e0 100644
--- a/surf.c
+++ b/surf.c
@@ -57,7 +57,7 @@ typedef struct Client {
Window xid;
WebKitWebView *view;
WebKitWebInspector *inspector;
- char *title, *linkhover;
+ const char *title, *linkhover;
const char *needle;
gint progress;
struct Client *next;
@@ -179,7 +179,7 @@ static void setup(void);
static void sigchld(int unused);
static void spawn(Client *c, const Arg *arg);
static void stop(Client *c, const Arg *arg);
-static void titlechange(WebKitWebView *view, GParamSpec *pspec, Client *c);
+static void titlechanged(WebKitWebView *view, GParamSpec *ps, Client *c);
static void titlechangeleave(void *a, void *b, Client *c);
static void toggle(Client *c, const Arg *arg);
static void togglecookiepolicy(Client *c, const Arg *arg);
@@ -865,7 +865,7 @@ newview(Client *c, WebKitWebView *rv)
g_signal_connect(G_OBJECT(v),
"notify::title",
- G_CALLBACK(titlechange), c);
+ G_CALLBACK(titlechanged), c);
g_signal_connect(G_OBJECT(v),
"hovering-over-link",
G_CALLBACK(linkhover), c);
@@ -1277,13 +1277,10 @@ stop(Client *c, const Arg *arg)
}
void
-titlechange(WebKitWebView *view, GParamSpec *pspec, Client *c)
+titlechanged(WebKitWebView *view, GParamSpec *ps, Client *c)
{
- const gchar *t = webkit_web_view_get_title(view);
- if (t) {
- c->title = copystr(&c->title, t);
- updatetitle(c);
- }
+ c->title = webkit_web_view_get_title(c->view);
+ updatetitle(c);
}
void