diff options
Diffstat (limited to 'Source/WebCore/html/HTMLFrameSetElement.cpp')
-rw-r--r-- | Source/WebCore/html/HTMLFrameSetElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/html/HTMLFrameSetElement.cpp b/Source/WebCore/html/HTMLFrameSetElement.cpp index c51ecc310..b0e7f0427 100644 --- a/Source/WebCore/html/HTMLFrameSetElement.cpp +++ b/Source/WebCore/html/HTMLFrameSetElement.cpp @@ -210,7 +210,7 @@ bool HTMLFrameSetElement::willRecalcStyle(StyleChange) return true; } -Node::InsertionNotificationRequest HTMLFrameSetElement::insertedInto(Node* insertionPoint) +Node::InsertionNotificationRequest HTMLFrameSetElement::insertedInto(ContainerNode* insertionPoint) { HTMLElement::insertedInto(insertionPoint); if (insertionPoint->inDocument()) { @@ -221,7 +221,7 @@ Node::InsertionNotificationRequest HTMLFrameSetElement::insertedInto(Node* inser return InsertionDone; } -void HTMLFrameSetElement::removedFrom(Node* insertionPoint) +void HTMLFrameSetElement::removedFrom(ContainerNode* insertionPoint) { HTMLElement::removedFrom(insertionPoint); if (insertionPoint->inDocument()) { |