[Libreoffice-commits] .: sc/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Aug 22 22:16:28 PDT 2012


 sc/source/core/data/dpobject.cxx |    5 -----
 1 file changed, 5 deletions(-)

New commits:
commit 56dde463a1b6c4b6ae7424070f3f0e00644965dc
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date:   Thu Aug 23 01:15:46 2012 -0400

    Removing a non-virtual destructor.
    
    Change-Id: I1be79ef0e6b7d0626d057a6d52950301ea4dd169

diff --git a/sc/source/core/data/dpobject.cxx b/sc/source/core/data/dpobject.cxx
index a34272d..ce9b236 100644
--- a/sc/source/core/data/dpobject.cxx
+++ b/sc/source/core/data/dpobject.cxx
@@ -132,7 +132,6 @@ class DBConnector : public ScDPCache::DBConnector
 
 public:
     DBConnector(ScDPCache& rCache, const uno::Reference<sdbc::XRowSet>& xRowSet, const Date& rNullDate);
-    ~DBConnector();
 
     bool isValid() const;
 
@@ -154,10 +153,6 @@ DBConnector::DBConnector(ScDPCache& rCache, const uno::Reference<sdbc::XRowSet>&
     mxRow.set(mxRowSet, UNO_QUERY);
 }
 
-DBConnector::~DBConnector()
-{
-}
-
 bool DBConnector::isValid() const
 {
     return mxRowSet.is() && mxRow.is() && mxMetaData.is();


More information about the Libreoffice-commits mailing list