summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/3rdparty/webkit/Source/WebCore/rendering/RenderBlock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/webkit/Source/WebCore/rendering/RenderBlock.h b/src/3rdparty/webkit/Source/WebCore/rendering/RenderBlock.h
index 68e2d80..e27068c 100644
--- a/src/3rdparty/webkit/Source/WebCore/rendering/RenderBlock.h
+++ b/src/3rdparty/webkit/Source/WebCore/rendering/RenderBlock.h
@@ -147,8 +147,8 @@ public:
RenderInline* inlineElementContinuation() const;
RenderBlock* blockElementContinuation() const;
- using RenderBoxModelObject::continuation;
- using RenderBoxModelObject::setContinuation;
+ RenderBoxModelObject* continuation() const { return RenderBoxModelObject::continuation(); }
+ void setContinuation(RenderBoxModelObject* o) { RenderBoxModelObject::setContinuation(o); }
// This function is a convenience helper for creating an anonymous block that inherits its
// style from this RenderBlock.