summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/rendering/RenderMultiColumnBlock.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/rendering/RenderMultiColumnBlock.h')
-rw-r--r--Source/WebCore/rendering/RenderMultiColumnBlock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/rendering/RenderMultiColumnBlock.h b/Source/WebCore/rendering/RenderMultiColumnBlock.h
index bfbfb380b..bd9f12afe 100644
--- a/Source/WebCore/rendering/RenderMultiColumnBlock.h
+++ b/Source/WebCore/rendering/RenderMultiColumnBlock.h
@@ -43,6 +43,8 @@ public:
LayoutUnit columnWidth() const { return m_columnWidth; }
unsigned columnCount() const { return m_columnCount; }
+ RenderMultiColumnFlowThread* flowThread() const { return m_flowThread; }
+
private:
virtual bool isRenderMultiColumnBlock() const { return true; }
@@ -58,8 +60,6 @@ private:
void ensureColumnSets();
- RenderMultiColumnFlowThread* flowThread() const { return m_flowThread; }
-
RenderMultiColumnFlowThread* m_flowThread;
unsigned m_columnCount; // The default column count/width that are based off our containing block width. These values represent only the default,
LayoutUnit m_columnWidth; // since a multi-column block that is split across variable width pages or regions will have different column counts and widths in each.