summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/SVGInlineFlowBox.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/rendering/SVGInlineFlowBox.h')
-rw-r--r--WebCore/rendering/SVGInlineFlowBox.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/rendering/SVGInlineFlowBox.h b/WebCore/rendering/SVGInlineFlowBox.h
index ab26297..80600f7 100644
--- a/WebCore/rendering/SVGInlineFlowBox.h
+++ b/WebCore/rendering/SVGInlineFlowBox.h
@@ -33,12 +33,12 @@ class SVGInlineFlowBox : public InlineFlowBox {
public:
SVGInlineFlowBox(RenderObject* obj)
: InlineFlowBox(obj)
- , m_height(0)
+ , m_logicalHeight(0)
{
}
- virtual int virtualHeight() const { return m_height; }
- void setHeight(int h) { m_height = h; }
+ virtual int virtualLogicalHeight() const { return m_logicalHeight; }
+ void setLogicalHeight(int h) { m_logicalHeight = h; }
virtual void paint(PaintInfo&, int tx, int ty);
@@ -46,7 +46,7 @@ public:
void layoutFlowBox();
private:
- int m_height;
+ int m_logicalHeight;
};
} // namespace WebCore