aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
Diffstat (limited to 'e-util')
-rw-r--r--e-util/e-html-editor-selection.c6
-rw-r--r--e-util/e-html-editor.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/e-util/e-html-editor-selection.c b/e-util/e-html-editor-selection.c
index 08bcd62040..de3e43174c 100644
--- a/e-util/e-html-editor-selection.c
+++ b/e-util/e-html-editor-selection.c
@@ -894,16 +894,16 @@ e_html_editor_selection_has_text (EHTMLEditorSelection *selection)
range = html_editor_selection_get_current_range (selection);
node = webkit_dom_range_get_start_container (range, NULL);
- if (webkit_dom_node_get_node_type (node) == 3)
+ if (WEBKIT_DOM_IS_TEXT (node))
return TRUE;
node = webkit_dom_range_get_end_container (range, NULL);
- if (webkit_dom_node_get_node_type (node) == 3)
+ if (WEBKIT_DOM_IS_TEXT (node))
return TRUE;
node = WEBKIT_DOM_NODE (webkit_dom_range_clone_contents (range, NULL));
while (node) {
- if (webkit_dom_node_get_node_type (node) == 3)
+ if (WEBKIT_DOM_IS_TEXT (node))
return TRUE;
if (webkit_dom_node_has_child_nodes (node)) {
diff --git a/e-util/e-html-editor.c b/e-util/e-html-editor.c
index aef38bc6f8..74b4a9b65c 100644
--- a/e-util/e-html-editor.c
+++ b/e-util/e-html-editor.c
@@ -352,7 +352,7 @@ html_editor_update_actions (EHTMLEditor *editor,
visible = (WEBKIT_DOM_IS_HTMLHR_ELEMENT (node));
gtk_action_set_visible (ACTION (CONTEXT_PROPERTIES_RULE), visible);
- visible = (webkit_dom_node_get_node_type (node) == 3);
+ visible = (WEBKIT_DOM_IS_TEXT (node));
gtk_action_set_visible (ACTION (CONTEXT_PROPERTIES_TEXT), visible);
visible =