Kaydet (Commit) 6069b516 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

more build fixes

üst 40cc36a2
......@@ -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 );
......
......@@ -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());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment