diff options
author | Laurent Balland-Poirier <laurent.balland-poirier@laposte.net> | 2015-03-22 22:01:53 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-04-27 23:24:30 +0000 |
commit | 38992b419a4655eba9b85d337edbb208fd2fff95 (patch) | |
tree | 5cbab5180769e0fc3ed069d32238cb7bb18a91fd /include/xmloff/xmlnumfe.hxx | |
parent | ac885af343aa4f4536cf029655826b12fd9c4340 (diff) |
tdf#90133 Extend ODF: exponent sign of scientific format
Scientific Format without sign in exponent, such as 0.00E0,
are managed by LibO, and can be saved in XLS format
This commit allows to save in ODF
Change-Id: Ia0c4589e2af942543ea296f970d163bc1d1d6f05
Reviewed-on: https://gerrit.libreoffice.org/14955
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'include/xmloff/xmlnumfe.hxx')
-rw-r--r-- | include/xmloff/xmlnumfe.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xmloff/xmlnumfe.hxx b/include/xmloff/xmlnumfe.hxx index ceffa35d0679..1f4198a738c5 100644 --- a/include/xmloff/xmlnumfe.hxx +++ b/include/xmloff/xmlnumfe.hxx @@ -67,7 +67,7 @@ private: bool bGrouping, sal_Int32 nTrailingThousands, const SvXMLEmbeddedTextEntryArr& rEmbeddedEntries ); SAL_DLLPRIVATE void WriteScientificElement_Impl( sal_Int32 nDecimals, sal_Int32 nInteger, - bool bGrouping, sal_Int32 nExp, sal_Int32 nExpInterval ); + bool bGrouping, sal_Int32 nExp, sal_Int32 nExpInterval, bool bExpSign ); SAL_DLLPRIVATE void WriteFractionElement_Impl( sal_Int32 nInteger, bool bGrouping, sal_Int32 nNumeratorDigits, sal_Int32 nDenominatorDigits, sal_Int32 nDenominator ); SAL_DLLPRIVATE void WriteCurrencyElement_Impl( const OUString& rString, |