summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2012-05-31 17:15:13 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-05-31 17:59:51 +0100
commit21b8d9fa7cd9a26b80ba2dbd408d1a4bb92ebf92 (patch)
treee0babc3aaa423f731fa58f7825f418ec7a655573 /sc
parentd55419832895a71b92923189137961f45ff18e72 (diff)
targetted revert of tiny unused method cleanup
Change-Id: I77cab69660aa073eea6eae83822ea875d387fd79
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/dociter.hxx1
-rw-r--r--sc/source/core/data/dociter.cxx5
2 files changed, 6 insertions, 0 deletions
diff --git a/sc/inc/dociter.hxx b/sc/inc/dociter.hxx
index fe7aa547c542..79495e1c8e43 100644
--- a/sc/inc/dociter.hxx
+++ b/sc/inc/dociter.hxx
@@ -573,6 +573,7 @@ public:
SCTAB mnTab;
::boost::shared_ptr<ScFlatBoolRowSegments> mpRanges;
+ TabRanges();
TabRanges(SCTAB nTab);
};
diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx
index 92c7cbd2bfef..009f907ef977 100644
--- a/sc/source/core/data/dociter.cxx
+++ b/sc/source/core/data/dociter.cxx
@@ -2205,6 +2205,11 @@ const ScPatternAttr* ScDocAttrIterator::GetNext( SCCOL& rCol, SCROW& rRow1, SCRO
// ============================================================================
+ScDocRowHeightUpdater::TabRanges::TabRanges() :
+ mnTab(0), mpRanges(new ScFlatBoolRowSegments)
+{
+}
+
ScDocRowHeightUpdater::TabRanges::TabRanges(SCTAB nTab) :
mnTab(nTab), mpRanges(new ScFlatBoolRowSegments)
{