sc/inc/documentstreamaccess.hxx              |    1 +
 sc/source/core/data/documentstreamaccess.cxx |    4 ++++
 2 files changed, 5 insertions(+)

New commits:
commit 6069b5162281ccc88eb242991a115197d0893fb4
Author: Markus Mohrhard <markus.mohrh...@googlemail.com>
Date:   Sun Jan 19 18:22:30 2014 +0100

    more build fixes

diff --git a/sc/inc/documentstreamaccess.hxx b/sc/inc/documentstreamaccess.hxx
index eda2c8d..351ed90 100644
--- a/sc/inc/documentstreamaccess.hxx
+++ b/sc/inc/documentstreamaccess.hxx
@@ -33,6 +33,7 @@ class DocumentStreamAccess
 
 public:
     DocumentStreamAccess( ScDocument& rDoc );
+    ~DocumentStreamAccess();
 
     void setNumericCell( const ScAddress& rPos, double fVal );
     void setStringCell( const ScAddress& rPos, const OUString& rStr );
diff --git a/sc/source/core/data/documentstreamaccess.cxx 
b/sc/source/core/data/documentstreamaccess.cxx
index bf3efe3..58c1e24 100644
--- a/sc/source/core/data/documentstreamaccess.cxx
+++ b/sc/source/core/data/documentstreamaccess.cxx
@@ -31,6 +31,10 @@ struct DocumentStreamAccessImpl
 DocumentStreamAccess::DocumentStreamAccess( ScDocument& rDoc ) :
     mpImpl(new DocumentStreamAccessImpl(rDoc)) {}
 
+DocumentStreamAccess::~DocumentStreamAccess()
+{
+}
+
 void DocumentStreamAccess::setNumericCell( const ScAddress& rPos, double fVal )
 {
     ScTable* pTab = mpImpl->mrDoc.FetchTable(rPos.Tab());
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to