summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/editing/InsertIntoTextNodeCommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/editing/InsertIntoTextNodeCommand.cpp')
-rw-r--r--Source/WebCore/editing/InsertIntoTextNodeCommand.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/editing/InsertIntoTextNodeCommand.cpp b/Source/WebCore/editing/InsertIntoTextNodeCommand.cpp
index 9b7761c..b1a455b 100644
--- a/Source/WebCore/editing/InsertIntoTextNodeCommand.cpp
+++ b/Source/WebCore/editing/InsertIntoTextNodeCommand.cpp
@@ -44,7 +44,7 @@ InsertIntoTextNodeCommand::InsertIntoTextNodeCommand(PassRefPtr<Text> node, unsi
void InsertIntoTextNodeCommand::doApply()
{
- if (!m_node->isContentEditable())
+ if (!m_node->rendererIsEditable())
return;
ExceptionCode ec;
@@ -56,7 +56,7 @@ void InsertIntoTextNodeCommand::doApply()
void InsertIntoTextNodeCommand::doUnapply()
{
- if (!m_node->isContentEditable())
+ if (!m_node->rendererIsEditable())
return;
// Need to notify this before actually deleting the text