diff options
author | Carlos Garcia Campos <cgarcia@igalia.com> | 2012-08-21 23:23:00 +0800 |
---|---|---|
committer | Carlos Garcia Campos <carlosgc@gnome.org> | 2012-08-22 01:01:02 +0800 |
commit | 7b67da4dc2d4eb2364be6db6239504155ea3edf3 (patch) | |
tree | 9416e025e4e66aeb3b777aac2eb862ec2a287619 /embed | |
parent | cb6d7aa9349f7b7fbe6456cc49009152a812530b (diff) | |
download | gsoc2013-epiphany-7b67da4dc2d4eb2364be6db6239504155ea3edf3.tar.gz gsoc2013-epiphany-7b67da4dc2d4eb2364be6db6239504155ea3edf3.tar.zst gsoc2013-epiphany-7b67da4dc2d4eb2364be6db6239504155ea3edf3.zip |
ephy-embed-single: Pass NULL as destroy notify to webkit_web_context_register_uri_scheme()
A GDestroyNotify paramater has been recently added.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed-single.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c index f1c778350..1e77c5a04 100644 --- a/embed/ephy-embed-single.c +++ b/embed/ephy-embed-single.c @@ -436,7 +436,7 @@ ephy_embed_single_initialize (EphyEmbedSingle *single) webkit_web_context_register_uri_scheme (web_context, EPHY_ABOUT_SCHEME, about_request_cb, - NULL); + NULL, NULL); #else SoupSession *session; SoupCookieJar *jar; |