summaryrefslogtreecommitdiff
path: root/sc/inc/columnspanset.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/columnspanset.hxx')
-rw-r--r--sc/inc/columnspanset.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/inc/columnspanset.hxx b/sc/inc/columnspanset.hxx
index a2f7c7bf6cf9..9e7e4f16fe24 100644
--- a/sc/inc/columnspanset.hxx
+++ b/sc/inc/columnspanset.hxx
@@ -19,6 +19,7 @@ class ScDocument;
class ScColumn;
class ScMarkData;
class ScRangeList;
+struct ScSheetLimits;
namespace sc {
@@ -114,7 +115,7 @@ public:
typedef std::vector<RowSpan> SpansType;
- SingleColumnSpanSet();
+ SingleColumnSpanSet(ScSheetLimits const &);
/**
* Scan an entire column and tag all non-empty cell positions.
@@ -149,6 +150,7 @@ public:
bool empty() const;
private:
+ ScSheetLimits const & mrSheetLimits;
ColumnSpansType maSpans;
};