diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2023-04-17 08:15:09 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-04-17 09:10:04 +0200 |
commit | 17071b079dcae1bb20dc7af11852ac2ffd8525d5 (patch) | |
tree | b059355e4e4e054f6c8853a3dda884d8eebb912f /include | |
parent | 3cd14725b6a16d7e6cc328aef3d1d9a9a6649634 (diff) |
xmloff: prefix members of SvXMLNumFmtExport
See tdf#94879 for motivation.
Change-Id: I8aa01371f310bf928cb78f149ea25bf0835cd6aa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150465
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/xmlnumfe.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/xmloff/xmlnumfe.hxx b/include/xmloff/xmlnumfe.hxx index 61836f534245..fd0711b3a0c3 100644 --- a/include/xmloff/xmlnumfe.hxx +++ b/include/xmloff/xmlnumfe.hxx @@ -47,13 +47,13 @@ class SvXMLEmbeddedTextEntryArr; class XMLOFF_DLLPUBLIC SvXMLNumFmtExport final { private: - SvXMLExport& rExport; - OUString sPrefix; - SvNumberFormatter* pFormatter; - OUStringBuffer sTextContent; - bool bHasText; - std::unique_ptr<SvXMLNumUsedList_Impl> pUsedList; - std::unique_ptr<LocaleDataWrapper> pLocaleData; + SvXMLExport& m_rExport; + OUString m_sPrefix; + SvNumberFormatter* m_pFormatter; + OUStringBuffer m_sTextContent; + bool m_bHasText; + std::unique_ptr<SvXMLNumUsedList_Impl> m_pUsedList; + std::unique_ptr<LocaleDataWrapper> m_pLocaleData; SAL_DLLPRIVATE void AddCalendarAttr_Impl( const OUString& rCalendar ); SAL_DLLPRIVATE void AddStyleAttr_Impl( bool bLong ); |