deprecating signal “title-changed” for “notify::title”

Signed-off-by: Christoph Lohmann <20h@r-36.net>
This commit is contained in:
Quentin Rameau 2014-02-06 18:54:38 +01:00 committed by Christoph Lohmann
parent 637902b452
commit 3cc5f87db8
1 changed files with 4 additions and 4 deletions

8
surf.c
View File

@ -164,8 +164,7 @@ static void sigchld(int unused);
static void source(Client *c, const Arg *arg); static void source(Client *c, const Arg *arg);
static void spawn(Client *c, const Arg *arg); static void spawn(Client *c, const Arg *arg);
static void stop(Client *c, const Arg *arg); static void stop(Client *c, const Arg *arg);
static void titlechange(WebKitWebView *v, WebKitWebFrame *frame, static void titlechange(WebKitWebView *view, GParamSpec *pspec, Client *c);
const char *title, Client *c);
static void toggle(Client *c, const Arg *arg); static void toggle(Client *c, const Arg *arg);
static void togglecookiepolicy(Client *c, const Arg *arg); static void togglecookiepolicy(Client *c, const Arg *arg);
static void togglegeolocation(Client *c, const Arg *arg); static void togglegeolocation(Client *c, const Arg *arg);
@ -749,7 +748,7 @@ newclient(void) {
c->view = WEBKIT_WEB_VIEW(webkit_web_view_new()); c->view = WEBKIT_WEB_VIEW(webkit_web_view_new());
g_signal_connect(G_OBJECT(c->view), g_signal_connect(G_OBJECT(c->view),
"title-changed", "notify::title",
G_CALLBACK(titlechange), c); G_CALLBACK(titlechange), c);
g_signal_connect(G_OBJECT(c->view), g_signal_connect(G_OBJECT(c->view),
"hovering-over-link", "hovering-over-link",
@ -1178,7 +1177,8 @@ stop(Client *c, const Arg *arg) {
} }
static void static void
titlechange(WebKitWebView *v, WebKitWebFrame *f, const char *t, Client *c) { titlechange(WebKitWebView *view, GParamSpec *pspec, Client *c) {
const gchar *t = webkit_web_view_get_title(view);
c->title = copystr(&c->title, t); c->title = copystr(&c->title, t);
updatetitle(c); updatetitle(c);
} }