[Libreoffice-commits] core.git: sc/inc sc/source

Eike Rathke erack at redhat.com
Wed Jan 28 04:52:22 PST 2015


 sc/inc/grouparealistener.hxx              |    2 ++
 sc/source/core/tool/grouparealistener.cxx |    4 ++++
 2 files changed, 6 insertions(+)

New commits:
commit 0fafb53d1c860388461f30e613a37c128c90ad79
Author: Eike Rathke <erack at redhat.com>
Date:   Wed Jan 28 13:47:39 2015 +0100

    let have FormulaGroupAreaListener a virtual dtor
    
    Change-Id: I1f5e246d68971124ef21e9c2d0db80499928998b

diff --git a/sc/inc/grouparealistener.hxx b/sc/inc/grouparealistener.hxx
index feb10df..da3481d 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 2249732..e7b71d7 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;


More information about the Libreoffice-commits mailing list