diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-03-13 12:22:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-03-13 20:17:16 +0100 |
commit | 8e3d3ed2681c8454fd5a7d7a7c144d90615d09e0 (patch) | |
tree | fd1d904f9dd9344f91c496a475c7318c5b3cc5be /include | |
parent | 7389be1996159b557f2e4022459ed8408302d72a (diff) |
SvNumberformat::ImpGetFractionOfSecondString can be const
Change-Id: If7a31f8b3667d9a6b8719553567211071bd2d631
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164774
Tested-by: Jenkins
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/zformat.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/zformat.hxx b/include/svl/zformat.hxx index 1fa52c3384a2..39ffd70f345c 100644 --- a/include/svl/zformat.hxx +++ b/include/svl/zformat.hxx @@ -731,7 +731,7 @@ private: // nFractionDecimals, unless nMinimumInputLineDecimals>0 is given for input // line string where extra trailing "0" are discarded. SVL_DLLPRIVATE sal_uInt16 ImpGetFractionOfSecondString( OUStringBuffer& rBuf, double fFractionOfSecond, - int nFractionDecimals, bool bAddOneRoundingDecimal, sal_uInt16 nIx, sal_uInt16 nMinimumInputLineDecimals ); + int nFractionDecimals, bool bAddOneRoundingDecimal, sal_uInt16 nIx, sal_uInt16 nMinimumInputLineDecimals ) const; // transliterate according to NativeNumber SVL_DLLPRIVATE OUString impTransliterateImpl(const OUString& rStr, const SvNumberNatNum& rNum) const; |