From 22a5430be94a29804b8674b1e630d09095cd9cf9 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 8 Jun 2011 14:23:24 +0200 Subject: Hack RenderBlock's continuation() and setContinuation() for RVCT 2.x. --- src/3rdparty/webkit/Source/WebCore/rendering/RenderBlock.h | 4 ++-- 1 file 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. -- cgit v0.12