diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-07-09 10:54:48 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-07-09 10:59:47 -0400 |
commit | dc2aa496c0252ef4a95289935eeac3340de1ca8b (patch) | |
tree | 0bd03a8a0b2cb3ec4bd3d8443c3e7bfec0101523 /sc/inc | |
parent | e35482d7f099ac313b0d77ca687daccd5fced18d (diff) |
Attempt to fix windows link error.
Change-Id: I27ef805c16dde46b9dff037356e8316e32c2d8c0
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/formulacell.hxx | 2 | ||||
-rw-r--r-- | sc/inc/global.hxx | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx index 07b726ae06f9..231789f2923e 100644 --- a/sc/inc/formulacell.hxx +++ b/sc/inc/formulacell.hxx @@ -272,7 +272,7 @@ public: formula string because the formula is present as a token array, as it is the case for binary Excel import. */ - void SetResultDouble( double n ) { aResult.SetDouble( n); } + void SetResultDouble( double n ); void SetResultToken( const formula::FormulaToken* pToken ); diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx index dd60c4b3600d..2b86a7c1e6db 100644 --- a/sc/inc/global.hxx +++ b/sc/inc/global.hxx @@ -576,6 +576,7 @@ public: SC_DLLPUBLIC static sal_uLong GetStandardFormat( double, SvNumberFormatter&, sal_uLong nFormat, short nType ); + SC_DLLPUBLIC static sal_uInt16 GetStandardRowHeight(); SC_DLLPUBLIC static double nScreenPPTX; SC_DLLPUBLIC static double nScreenPPTY; |