summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/EllipsisBox.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/rendering/EllipsisBox.h')
-rw-r--r--WebCore/rendering/EllipsisBox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/rendering/EllipsisBox.h b/WebCore/rendering/EllipsisBox.h
index 476331c..ec1b00b 100644
--- a/WebCore/rendering/EllipsisBox.h
+++ b/WebCore/rendering/EllipsisBox.h
@@ -30,8 +30,8 @@ class HitTestResult;
class EllipsisBox : public InlineBox {
public:
EllipsisBox(RenderObject* obj, const AtomicString& ellipsisStr, InlineFlowBox* parent,
- int width, int height, int y, bool firstLine, InlineBox* markupBox)
- : InlineBox(obj, 0, y, width, firstLine, true, false, false, 0, 0, parent)
+ int width, int height, int y, bool firstLine, bool isVertical, InlineBox* markupBox)
+ : InlineBox(obj, 0, y, width, firstLine, true, false, false, isVertical, 0, 0, parent)
, m_height(height)
, m_str(ellipsisStr)
, m_markupBox(markupBox)