Kaydet (Commit) 3a5cc4e3 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

More fix for link error on windows.

Change-Id: I4c419e87c3b3da1d28ff1e6aa2877c74cdbd1437
üst f3a0dd8f
......@@ -276,7 +276,7 @@ public:
void SetResultToken( const formula::FormulaToken* pToken );
double GetResultDouble() const { return aResult.GetDouble(); }
double GetResultDouble() const;
void SetErrCode( sal_uInt16 n );
bool IsHyperLinkCell() const;
......
......@@ -41,6 +41,7 @@
#include "markdata.hxx"
#include "colorscale.hxx"
#include "olinetab.hxx"
#include "patattr.hxx"
#include <com/sun/star/drawing/XDrawPageSupplier.hpp>
#include <com/sun/star/drawing/XControlShape.hpp>
......
......@@ -1603,6 +1603,11 @@ void ScFormulaCell::SetResultToken( const formula::FormulaToken* pToken )
aResult.SetToken(pToken);
}
double ScFormulaCell::GetResultDouble() const
{
return aResult.GetDouble();
}
void ScFormulaCell::SetResultMatrix( SCCOL nCols, SCROW nRows, const ScConstMatrixRef& pMat, formula::FormulaToken* pUL )
{
aResult.SetMatrix(nCols, nRows, pMat, pUL);
......
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