aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-web-view.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <cgarcia@igalia.com>2013-03-09 23:10:36 +0800
committerCarlos Garcia Campos <carlosgc@gnome.org>2013-03-12 17:01:45 +0800
commitd973101a1efc06579b110c4de89360919280da2e (patch)
treec64afb925ac47d00ef4745a22f34f1fdff79567a /embed/ephy-web-view.c
parent2499031072e275e68ad8dc1cb9bd0a53397a5e5a (diff)
downloadgsoc2013-epiphany-d973101a1efc06579b110c4de89360919280da2e.tar
gsoc2013-epiphany-d973101a1efc06579b110c4de89360919280da2e.tar.gz
gsoc2013-epiphany-d973101a1efc06579b110c4de89360919280da2e.tar.bz2
gsoc2013-epiphany-d973101a1efc06579b110c4de89360919280da2e.tar.lz
gsoc2013-epiphany-d973101a1efc06579b110c4de89360919280da2e.tar.xz
gsoc2013-epiphany-d973101a1efc06579b110c4de89360919280da2e.tar.zst
gsoc2013-epiphany-d973101a1efc06579b110c4de89360919280da2e.zip
Add EphyFormAuthDataCache to ephy-form-auth-data
And use it in EphyEmbedSingle to cache the form auth data.
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r--embed/ephy-web-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c
index d86233330..f5627d8dc 100644
--- a/embed/ephy-web-view.c
+++ b/embed/ephy-web-view.c
@@ -762,7 +762,7 @@ pre_fill_form (WebKitDOMNode *username_node,
for (p = l; p; p = p->next) {
char *username_field_name;
char *password_field_name;
- EphyEmbedSingleFormAuthData *data = (EphyEmbedSingleFormAuthData*)p->data;
+ EphyFormAuthData *data = (EphyFormAuthData *)p->data;
g_object_get (username_node,
"name", &username_field_name, NULL);