summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sc/inc/documentstreamaccess.hxx1
-rw-r--r--sc/source/core/data/documentstreamaccess.cxx4
2 files changed, 5 insertions, 0 deletions
diff --git a/sc/inc/documentstreamaccess.hxx b/sc/inc/documentstreamaccess.hxx
index eda2c8def877..351ed9021022 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 bf3efe33f4a6..58c1e2490e18 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());