diff options
author | Eike Rathke <erack@redhat.com> | 2015-01-28 13:47:39 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-01-28 13:51:27 +0100 |
commit | 0fafb53d1c860388461f30e613a37c128c90ad79 (patch) | |
tree | 65a6cc2c24d957560ffbfff0c0e36fe4438b5828 /sc | |
parent | 4e3da621fe26c2ad85258692c63a044d0541bd64 (diff) |
let have FormulaGroupAreaListener a virtual dtor
Change-Id: I1f5e246d68971124ef21e9c2d0db80499928998b
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/grouparealistener.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/tool/grouparealistener.cxx | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sc/inc/grouparealistener.hxx b/sc/inc/grouparealistener.hxx index feb10df0fb63..da3481d3a183 100644 --- a/sc/inc/grouparealistener.hxx +++ b/sc/inc/grouparealistener.hxx @@ -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; diff --git a/sc/source/core/tool/grouparealistener.cxx b/sc/source/core/tool/grouparealistener.cxx index 224973238907..e7b71d7994c4 100644 --- a/sc/source/core/tool/grouparealistener.cxx +++ b/sc/source/core/tool/grouparealistener.cxx @@ -80,6 +80,10 @@ FormulaGroupAreaListener::FormulaGroupAreaListener( assert(mppTopCell); // This can't be NULL. } +FormulaGroupAreaListener::~FormulaGroupAreaListener() +{ +} + ScRange FormulaGroupAreaListener::getListeningRange() const { ScRange aRet = maRange; |