]> spindle.queued.net Git - midori/commitdiff
Guarding 'autocomplete' with 1.6.1 is enough
authorChristian Dywan <christian@twotoasts.de>
Thu, 19 Jan 2012 01:31:27 +0000 (02:31 +0100)
committerChristian Dywan <christian@twotoasts.de>
Thu, 19 Jan 2012 01:31:27 +0000 (02:31 +0100)
extensions/formhistory/formhistory-gdom-frontend.c

index 3d0d24cb357b995c442e778fce71a85cdf60662d..6b28e2d85f73f7b16dd3e76bbb2ae232599d5e08 100644 (file)
@@ -380,9 +380,9 @@ formhistory_DOMContentLoaded_cb (WebKitDOMElement* window,
     for (i = 0; i < webkit_dom_node_list_get_length (inputs); i++)
     {
         WebKitDOMNode* element = webkit_dom_node_list_item (inputs, i);
-        #if WEBKIT_CHECK_VERSION (1, 7, 4)
+        #if WEBKIT_CHECK_VERSION (1, 6, 1)
         gchar* autocomplete = webkit_dom_html_input_element_get_autocomplete (
-            WebKitDOMHTMLInputElement (element));
+            WEBKIT_DOM_HTML_INPUT_ELEMENT (element));
         gboolean off = !g_strcmp0 (autocomplete, "off");
         g_free (autocomplete);
         if (off)