diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-16 15:55:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-17 08:40:59 +0200 |
commit | 7fd3c5e8e5897617f1e89fda26f8cdbd4092071d (patch) | |
tree | 60704a90ddff313e6702925224a747cac0d6f1cc /starmath/source/parse5.cxx | |
parent | 388685ea72fc22bd375e9f31a339632e175f4290 (diff) |
remove GetCharClassPtr from SvtSysLocale
we already have GetCharClass and we never return a nullptr
Change-Id: I3cb79bc60be614c0474ecfdaad17991f2ecb6368
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122208
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath/source/parse5.cxx')
-rw-r--r-- | starmath/source/parse5.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/parse5.cxx b/starmath/source/parse5.cxx index a3b253bfd308..d629fd36ddb1 100644 --- a/starmath/source/parse5.cxx +++ b/starmath/source/parse5.cxx @@ -2695,7 +2695,7 @@ SmParser5::SmParser5() , m_bExportSymNames(false) , m_nParseDepth(0) , m_aNumCC(LanguageTag(LANGUAGE_ENGLISH_US)) - , m_pSysCC(SM_MOD()->GetSysLocale().GetCharClassPtr()) + , m_pSysCC(&SM_MOD()->GetSysLocale().GetCharClass()) { } |