diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-11-13 04:41:16 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-11-13 04:41:16 +0800 |
commit | 0777997cc8ede06e71e2b1783adb51d95705e11c (patch) | |
tree | e31191cdfff34f139cade29d18ccb52c46d2e9b9 /embed | |
parent | 9345f8419eb679a8d1417c3f808fbb870c924d9a (diff) | |
download | gsoc2013-epiphany-0777997cc8ede06e71e2b1783adb51d95705e11c.tar gsoc2013-epiphany-0777997cc8ede06e71e2b1783adb51d95705e11c.tar.gz gsoc2013-epiphany-0777997cc8ede06e71e2b1783adb51d95705e11c.tar.bz2 gsoc2013-epiphany-0777997cc8ede06e71e2b1783adb51d95705e11c.tar.lz gsoc2013-epiphany-0777997cc8ede06e71e2b1783adb51d95705e11c.tar.xz gsoc2013-epiphany-0777997cc8ede06e71e2b1783adb51d95705e11c.tar.zst gsoc2013-epiphany-0777997cc8ede06e71e2b1783adb51d95705e11c.zip |
Fix backend name for WebKit and update docs in ephy_embed_single_get_backend_name.
svn path=/trunk/; revision=7678
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-embed-single.c | 2 | ||||
-rw-r--r-- | embed/webkit/webkit-embed-single.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-embed-single.c b/embed/ephy-embed-single.c index 46347762e..981e15aab 100644 --- a/embed/ephy-embed-single.c +++ b/embed/ephy-embed-single.c @@ -298,7 +298,7 @@ ephy_embed_single_open_window (EphyEmbedSingle *single, * for rendering pages. * * Returns: the name of the backend. Valid returns are "gecko-1.7", - * "gecko-1.8" and "gecko-1.9" + * "gecko-1.8", "gecko-1.9" and "WebKit" */ const char * ephy_embed_single_get_backend_name (EphyEmbedSingle *single) diff --git a/embed/webkit/webkit-embed-single.cpp b/embed/webkit/webkit-embed-single.cpp index e1d3e2b01..58fb0b88a 100644 --- a/embed/webkit/webkit-embed-single.cpp +++ b/embed/webkit/webkit-embed-single.cpp @@ -130,7 +130,7 @@ impl_get_backend_name (EphyEmbedSingle *esingle) { /* If you alter the return values here, remember to update * the docs in ephy-embed-single.c */ - return "webkit"; + return "WebKit"; } static GList * |