Kaydet (Commit) 0fafb53d authored tarafından Eike Rathke's avatar Eike Rathke

let have FormulaGroupAreaListener a virtual dtor

Change-Id: I1f5e246d68971124ef21e9c2d0db80499928998b
üst 4e3da621
......@@ -36,6 +36,8 @@ public:
FormulaGroupAreaListener(
const ScRange& rRange, ScFormulaCell** ppTopCell, SCROW nGroupLen, bool bStartFixed, bool bEndFixed );
virtual ~FormulaGroupAreaListener();
ScRange getListeningRange() const;
virtual void Notify( const SfxHint& rHint ) SAL_OVERRIDE;
......
......@@ -80,6 +80,10 @@ FormulaGroupAreaListener::FormulaGroupAreaListener(
assert(mppTopCell); // This can't be NULL.
}
FormulaGroupAreaListener::~FormulaGroupAreaListener()
{
}
ScRange FormulaGroupAreaListener::getListeningRange() const
{
ScRange aRet = maRange;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment