Index: Source/core/html/HTMLRTElement.cpp |
diff --git a/Source/core/html/HTMLRTElement.cpp b/Source/core/html/HTMLRTElement.cpp |
index 96df782640f6fd78639e697983ed636f4e88e498..d51c4c6e7e897574db29b0ad01a1be01e432a0df 100644 |
--- a/Source/core/html/HTMLRTElement.cpp |
+++ b/Source/core/html/HTMLRTElement.cpp |
@@ -19,11 +19,11 @@ inline HTMLRTElement::HTMLRTElement(Document& document) |
DEFINE_NODE_FACTORY(HTMLRTElement) |
-RenderObject* HTMLRTElement::createRenderer(const RenderStyle& style) |
+LayoutObject* HTMLRTElement::createRenderer(const RenderStyle& style) |
{ |
if (style.display() == BLOCK) |
return new LayoutRubyText(this); |
- return RenderObject::createObject(this, style); |
+ return LayoutObject::createObject(this, style); |
} |
} |