summaryrefslogtreecommitdiffstats
path: root/WebCore/editing/BreakBlockquoteCommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/editing/BreakBlockquoteCommand.cpp')
-rw-r--r--WebCore/editing/BreakBlockquoteCommand.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/editing/BreakBlockquoteCommand.cpp b/WebCore/editing/BreakBlockquoteCommand.cpp
index 2da6047..63956e5 100644
--- a/WebCore/editing/BreakBlockquoteCommand.cpp
+++ b/WebCore/editing/BreakBlockquoteCommand.cpp
@@ -67,7 +67,7 @@ void BreakBlockquoteCommand::doApply()
// Find the top-most blockquote from the start.
Element* topBlockquote = 0;
- for (Node *node = pos.node()->parentNode(); node; node = node->parentNode()) {
+ for (ContainerNode* node = pos.node()->parentNode(); node; node = node->parentNode()) {
if (isMailBlockquote(node))
topBlockquote = static_cast<Element*>(node);
}