diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2023-05-15 08:10:09 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2023-05-15 11:17:39 +0200 |
commit | d75f4673ac6e51ae341a3d87dc9b16c4ed0c1cdf (patch) | |
tree | 4e1f2e0410960a324842e38eb1b7fb5275cf39f7 /include | |
parent | f5a9b83cf9403594d9c37df8397fe01a103ae67e (diff) |
sw: prefix members of SvXMLAttrContainerData, XMLDashStyleExport, ...
... XMLDashStyleImport and XMLEventExport
See tdf#94879 for motivation.
Change-Id: I203cc1c789a1a33721b27754412da35c3ca8a56a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151755
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/DashStyle.hxx | 4 | ||||
-rw-r--r-- | include/xmloff/XMLEventExport.hxx | 8 | ||||
-rw-r--r-- | include/xmloff/xmlcnimp.hxx | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/include/xmloff/DashStyle.hxx b/include/xmloff/DashStyle.hxx index c27234124556..2a378261ab98 100644 --- a/include/xmloff/DashStyle.hxx +++ b/include/xmloff/DashStyle.hxx @@ -34,7 +34,7 @@ namespace com::sun::star { class XMLOFF_DLLPUBLIC XMLDashStyleImport { - SvXMLImport& rImport; + SvXMLImport& m_rImport; public: XMLDashStyleImport( SvXMLImport& rImport ); @@ -48,7 +48,7 @@ public: class XMLOFF_DLLPUBLIC XMLDashStyleExport { - SvXMLExport& rExport; + SvXMLExport& m_rExport; public: XMLDashStyleExport( SvXMLExport& rExport ); diff --git a/include/xmloff/XMLEventExport.hxx b/include/xmloff/XMLEventExport.hxx index ad83390b6dc9..53864b9e5e63 100644 --- a/include/xmloff/XMLEventExport.hxx +++ b/include/xmloff/XMLEventExport.hxx @@ -60,12 +60,12 @@ typedef ::std::map< OUString, XMLEventName > NameMap; */ class XMLOFF_DLLPUBLIC XMLEventExport { - SvXMLExport& rExport; + SvXMLExport& m_rExport; - HandlerMap aHandlerMap; - NameMap aNameTranslationMap; + HandlerMap m_aHandlerMap; + NameMap m_aNameTranslationMap; - bool bExtNamespace; + bool m_bExtNamespace; public: XMLEventExport(SvXMLExport& rExport); diff --git a/include/xmloff/xmlcnimp.hxx b/include/xmloff/xmlcnimp.hxx index 614a8cae742f..8ccdc9948a4d 100644 --- a/include/xmloff/xmlcnimp.hxx +++ b/include/xmloff/xmlcnimp.hxx @@ -30,7 +30,7 @@ class SvXMLAttrCollection; class XMLOFF_DLLPUBLIC SvXMLAttrContainerData { private: - std::unique_ptr<SvXMLAttrCollection> pimpl; + std::unique_ptr<SvXMLAttrCollection> m_pImpl; public: SvXMLAttrContainerData(); |