summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/SVGInlineTextBox.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/rendering/SVGInlineTextBox.h')
-rw-r--r--WebCore/rendering/SVGInlineTextBox.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/rendering/SVGInlineTextBox.h b/WebCore/rendering/SVGInlineTextBox.h
index 7711db4..24957cf 100644
--- a/WebCore/rendering/SVGInlineTextBox.h
+++ b/WebCore/rendering/SVGInlineTextBox.h
@@ -42,11 +42,11 @@ public:
virtual bool isSVGInlineTextBox() 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 int selectionTop() { return m_y; }
- virtual int selectionHeight() { return m_height; }
+ virtual int selectionHeight() { return m_logicalHeight; }
virtual int offsetForPosition(int x, bool includePartialGlyphs = true) const;
virtual int positionForOffset(int offset) const;
@@ -91,7 +91,7 @@ private:
FloatRect selectionRectForTextChunkPart(const SVGTextChunkPart&, int partStartPos, int partEndPos, RenderStyle*);
private:
- int m_height;
+ int m_logicalHeight;
AffineTransform m_chunkTransformation;
Vector<SVGTextChunkPart> m_svgTextChunkParts;
mutable SVGTextChunkPart m_currentChunkPart;