summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/SVGRootInlineBox.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/rendering/SVGRootInlineBox.h')
-rw-r--r--WebCore/rendering/SVGRootInlineBox.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/WebCore/rendering/SVGRootInlineBox.h b/WebCore/rendering/SVGRootInlineBox.h
index 4e61190..77e7fcb 100644
--- a/WebCore/rendering/SVGRootInlineBox.h
+++ b/WebCore/rendering/SVGRootInlineBox.h
@@ -37,16 +37,16 @@ class SVGInlineTextBox;
class SVGRootInlineBox : public RootInlineBox {
public:
- SVGRootInlineBox(RenderObject* obj)
- : RootInlineBox(obj)
- , m_height(0)
+ SVGRootInlineBox(RenderBlock* block)
+ : RootInlineBox(block)
+ , m_logicalHeight(0)
{
}
virtual bool isSVGRootInlineBox() const { return true; }
- virtual int virtualHeight() const { return m_height; }
- void setHeight(int height) { m_height = height; }
+ virtual int virtualLogicalHeight() const { return m_logicalHeight; }
+ void setLogicalHeight(int height) { m_logicalHeight = height; }
virtual void paint(PaintInfo&, int tx, int ty);
@@ -66,7 +66,7 @@ private:
void layoutChildBoxes(InlineFlowBox* start);
private:
- int m_height;
+ int m_logicalHeight;
Vector<SVGChar> m_svgChars;
Vector<SVGTextChunk> m_svgTextChunks;
};