summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/xmloff/DashStyle.hxx4
-rw-r--r--include/xmloff/XMLEventExport.hxx8
-rw-r--r--include/xmloff/xmlcnimp.hxx2
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();