diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-01-19 18:22:30 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-01-19 18:22:30 +0100 |
commit | 6069b5162281ccc88eb242991a115197d0893fb4 (patch) | |
tree | 7a91a99fa56d24952d911f2712ddd62b41b5eeab /sc | |
parent | 40cc36a2e781c46fafb988f1ffbe6c01e4bf274e (diff) |
more build fixes
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/documentstreamaccess.hxx | 1 | ||||
-rw-r--r-- | sc/source/core/data/documentstreamaccess.cxx | 4 |
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()); |