diff options
author | Laurent Balland-Poirier <laurent.balland-poirier@laposte.net> | 2015-03-20 08:22:22 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-03-23 11:40:12 +0000 |
commit | 2b838285e206912374f464bd1ab8dc8a561f59f5 (patch) | |
tree | ed8b7ce7fb53c83377f3a8e0fe9f0c391704d42a /include/svl | |
parent | 09f399d13d65b9aafa3108cb006b55b92d4bbbca (diff) |
tdf#90133 Scientific format: allow variable decimal
This commit treats variable decimal in the same way for scientfic format
as for number format
Change-Id: Ibc3f88150e2a8e353d35415da78998ec8c201e8b
Reviewed-on: https://gerrit.libreoffice.org/14918
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/zformat.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/svl/zformat.hxx b/include/svl/zformat.hxx index e6d4bf908561..08415f9d10fd 100644 --- a/include/svl/zformat.hxx +++ b/include/svl/zformat.hxx @@ -592,6 +592,12 @@ private: sal_Int32 & nDigitCount, utl::DigitGroupingIterator & ); + SVL_DLLPRIVATE bool ImpDecimalFill( OUStringBuffer& sStr, + double& rNumber, + sal_uInt16 j, + sal_uInt16 nIx, + bool bInteger ); + SVL_DLLPRIVATE bool ImpGetFractionOutput(double fNumber, sal_uInt16 nIx, OUStringBuffer& OutString); |