summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/grouparealistener.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/tool/grouparealistener.cxx')
-rw-r--r--sc/source/core/tool/grouparealistener.cxx17
1 files changed, 15 insertions, 2 deletions
diff --git a/sc/source/core/tool/grouparealistener.cxx b/sc/source/core/tool/grouparealistener.cxx
index e93d2fc92364..4a13398c2e46 100644
--- a/sc/source/core/tool/grouparealistener.cxx
+++ b/sc/source/core/tool/grouparealistener.cxx
@@ -219,18 +219,31 @@ void FormulaGroupAreaListener::collectFormulaCells(
}
}
-#if DEBUG_AREA_BROADCASTER
ScAddress FormulaGroupAreaListener::getTopCellPos() const
{
const ScFormulaCell& rFC = **mppTopCell;
return rFC.aPos;
}
+const ScRange& FormulaGroupAreaListener::getRange() const
+{
+ return maRange;
+}
+
SCROW FormulaGroupAreaListener::getGroupLength() const
{
return mnGroupLen;
}
-#endif
+
+bool FormulaGroupAreaListener::isStartFixed() const
+{
+ return mbStartFixed;
+}
+
+bool FormulaGroupAreaListener::isEndFixed() const
+{
+ return mbEndFixed;
+}
void FormulaGroupAreaListener::notifyCellChange( const SfxHint& rHint, const ScAddress& rPos )
{