diff options
author | Carlos Garcia Campos <cgarcia@igalia.com> | 2012-06-22 14:38:45 +0800 |
---|---|---|
committer | Carlos Garcia Campos <carlosgc@gnome.org> | 2012-06-25 18:22:47 +0800 |
commit | af4b7f86164391b8d54b058fa7d5de53b7331788 (patch) | |
tree | d5af8718768fcdf5b6d7714567db812025a449dd /embed/ephy-web-view.c | |
parent | 5804d8437b26f838fbad66dd7b6ac58bd04c1118 (diff) | |
download | gsoc2013-epiphany-af4b7f86164391b8d54b058fa7d5de53b7331788.tar.gz gsoc2013-epiphany-af4b7f86164391b8d54b058fa7d5de53b7331788.tar.zst gsoc2013-epiphany-af4b7f86164391b8d54b058fa7d5de53b7331788.zip |
Port history to WebKit2
In WebKit2 the back forward list is a read-only object, so the code were
the back forward list is modified hasn't been ported.
https://bugzilla.gnome.org/show_bug.cgi?id=678594
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r-- | embed/ephy-web-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 220bc7052..7355618bd 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -1079,7 +1079,7 @@ static void ephy_web_view_clear_history (EphyWebView *view) { #ifdef HAVE_WEBKIT2 - /* TODO: History */ + /* TODO: WebKitBackForwardList is read-only in WebKit2 */ #else WebKitWebBackForwardList *history_list; |