aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-web-dom-utils.c4
-rw-r--r--lib/ephy-web-dom-utils.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/ephy-web-dom-utils.c b/lib/ephy-web-dom-utils.c
index 52fb6766e..40b324bb0 100644
--- a/lib/ephy-web-dom-utils.c
+++ b/lib/ephy-web-dom-utils.c
@@ -30,7 +30,7 @@
#endif
/**
- * ephy_web_dom_has_modified_forms:
+ * ephy_web_dom_utils_has_modified_forms:
* @document: the DOM document to check if there are or not modified forms.
*
* A small heuristic is used here. If there's only one input element modified
@@ -42,7 +42,7 @@
* values in the @document.
**/
gboolean
-ephy_web_dom_has_modified_forms (WebKitDOMDocument *document)
+ephy_web_dom_utils_has_modified_forms (WebKitDOMDocument *document)
{
WebKitDOMHTMLCollection *forms;
gulong forms_n;
diff --git a/lib/ephy-web-dom-utils.h b/lib/ephy-web-dom-utils.h
index b5dbd255c..f3cde8184 100644
--- a/lib/ephy-web-dom-utils.h
+++ b/lib/ephy-web-dom-utils.h
@@ -33,7 +33,7 @@
G_BEGIN_DECLS
-gboolean ephy_web_dom_has_modified_forms (WebKitDOMDocument *document);
+gboolean ephy_web_dom_utils_has_modified_forms (WebKitDOMDocument *document);
G_END_DECLS