diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-03-07 13:18:06 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-03-07 16:31:17 +0100 |
commit | 241d855f79d4e4b560a127ccdbcaa6b32297f52d (patch) | |
tree | 47a2fce6411d5430058dd44c4d3a86ed82a6d359 /include | |
parent | dbc00dd52c36a4fa6346ab4cf497cb02d6eedec8 (diff) |
ResetDefaultSystemCurrency can be private
only called by a friend from the same .so
Change-Id: I5f63e83325b291b95b0132089dc331f3b7e79362
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164538
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/numformat.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svl/numformat.hxx b/include/svl/numformat.hxx index 6c256aaf09d5..681bb678eb53 100644 --- a/include/svl/numformat.hxx +++ b/include/svl/numformat.hxx @@ -683,14 +683,14 @@ private: // Whether nFIndex is a special builtin format SVL_DLLPRIVATE bool ImpIsSpecialStandardFormat(sal_uInt32 nFIndex, LanguageType eLnge); + // called by SvNumberFormatterRegistry_Impl::Notify if the default system currency changes + SVL_DLLPRIVATE void ResetDefaultSystemCurrency(); + // own mutex, may also be used by internal class SvNumberFormatterRegistry_Impl static ::osl::Mutex& GetGlobalMutex(); ::osl::Mutex& GetInstanceMutex() const { return m_aMutex; } public: - // called by SvNumberFormatterRegistry_Impl::Notify if the default system currency changes - void ResetDefaultSystemCurrency(); - // Called by SvNumberFormatterRegistry_Impl::Notify if the system locale's // date acceptance patterns change. void InvalidateDateAcceptancePatterns(); |