summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2023-04-24 07:40:01 +0200
committerMiklos Vajna <vmiklos@collabora.com>2023-04-24 09:23:37 +0200
commit95aa39749b4dcc9cf06350dcb8c9a96373de5999 (patch)
treedb96f969cd50f24e79ec528c643a4bb8e49f97b0 /include
parent12e23067fd0acad3e06df50cefaa0a2cd73df3b5 (diff)
sw: prefix members of XMLFontAutoStylePool, XMLPageExport, ...
... XMLStyleExport and XMLTextListAutoStylePool See tdf#94879 for motivation. Change-Id: If49190233b87bf86c83d56f02eedb1c010ef119c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150896 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include')
-rw-r--r--include/xmloff/XMLFontAutoStylePool.hxx4
-rw-r--r--include/xmloff/XMLPageExport.hxx14
-rw-r--r--include/xmloff/XMLTextListAutoStylePool.hxx8
-rw-r--r--include/xmloff/styleexp.hxx8
4 files changed, 17 insertions, 17 deletions
diff --git a/include/xmloff/XMLFontAutoStylePool.hxx b/include/xmloff/XMLFontAutoStylePool.hxx
index 2354bcf8ce7d..569f1443ab14 100644
--- a/include/xmloff/XMLFontAutoStylePool.hxx
+++ b/include/xmloff/XMLFontAutoStylePool.hxx
@@ -36,7 +36,7 @@ class SvXMLExport;
class XMLOFF_DLLPUBLIC XMLFontAutoStylePool : public salhelper::SimpleReferenceObject
{
private:
- SvXMLExport& rExport;
+ SvXMLExport& m_rExport;
std::unique_ptr<XMLFontAutoStylePool_Impl> m_pFontAutoStylePool;
std::set<OUString> m_aNames;
@@ -53,7 +53,7 @@ protected:
bool m_bEmbedAsianScript;
bool m_bEmbedComplexScript;
- SvXMLExport& GetExport() { return rExport; }
+ SvXMLExport& GetExport() { return m_rExport; }
public:
XMLFontAutoStylePool( SvXMLExport& rExport, bool tryToEmbedFonts = false );
diff --git a/include/xmloff/XMLPageExport.hxx b/include/xmloff/XMLPageExport.hxx
index 4553c9b61217..ba06efc38e08 100644
--- a/include/xmloff/XMLPageExport.hxx
+++ b/include/xmloff/XMLPageExport.hxx
@@ -50,21 +50,21 @@ struct XMLPageExportNameEntry
class XMLOFF_DLLPUBLIC XMLPageExport : public salhelper::SimpleReferenceObject
{
- SvXMLExport& rExport;
+ SvXMLExport& m_rExport;
- css::uno::Reference< css::container::XNameAccess > xPageStyles;
+ css::uno::Reference< css::container::XNameAccess > m_xPageStyles;
- ::std::vector< XMLPageExportNameEntry > aNameVector;
+ ::std::vector< XMLPageExportNameEntry > m_aNameVector;
- rtl::Reference < XMLPropertyHandlerFactory > xPageMasterPropHdlFactory;
- rtl::Reference < XMLPropertySetMapper > xPageMasterPropSetMapper;
- rtl::Reference < SvXMLExportPropertyMapper > xPageMasterExportPropMapper;
+ rtl::Reference < XMLPropertyHandlerFactory > m_xPageMasterPropHdlFactory;
+ rtl::Reference < XMLPropertySetMapper > m_xPageMasterPropSetMapper;
+ rtl::Reference < SvXMLExportPropertyMapper > m_xPageMasterExportPropMapper;
rtl::Reference<XMLPropertySetMapper> m_xPageMasterDrawingPagePropSetMapper;
rtl::Reference<SvXMLExportPropertyMapper> m_xPageMasterDrawingPageExportPropMapper;
protected:
- SvXMLExport& GetExport() { return rExport; }
+ SvXMLExport& GetExport() { return m_rExport; }
void collectPageMasterAutoStyle(
const css::uno::Reference< css::beans::XPropertySet > & rPropSet,
diff --git a/include/xmloff/XMLTextListAutoStylePool.hxx b/include/xmloff/XMLTextListAutoStylePool.hxx
index 6237cda709e7..0835ffc49fd5 100644
--- a/include/xmloff/XMLTextListAutoStylePool.hxx
+++ b/include/xmloff/XMLTextListAutoStylePool.hxx
@@ -39,13 +39,13 @@ class SvXMLExport;
class XMLOFF_DLLPUBLIC XMLTextListAutoStylePool
{
- SvXMLExport& rExport;
+ SvXMLExport& m_rExport;
- OUString sPrefix;
+ OUString m_sPrefix;
- std::unique_ptr<XMLTextListAutoStylePool_Impl> pPool;
+ std::unique_ptr<XMLTextListAutoStylePool_Impl> m_pPool;
XMLTextListAutoStylePoolNames_Impl m_aNames;
- sal_uInt32 nName;
+ sal_uInt32 m_nName;
/** this is an optional NumRule compare component for applications where
the NumRules don't have names */
diff --git a/include/xmloff/styleexp.hxx b/include/xmloff/styleexp.hxx
index 66bfc42dc4d0..deb03f179953 100644
--- a/include/xmloff/styleexp.hxx
+++ b/include/xmloff/styleexp.hxx
@@ -52,12 +52,12 @@ enum class XmlStyleFamily;
class XMLOFF_DLLPUBLIC XMLStyleExport : public salhelper::SimpleReferenceObject
{
- SvXMLExport& rExport;
- SvXMLAutoStylePoolP *pAutoStylePool;
+ SvXMLExport& m_rExport;
+ SvXMLAutoStylePoolP *m_pAutoStylePool;
protected:
- SvXMLExport& GetExport() { return rExport; }
- const SvXMLExport& GetExport() const { return rExport; }
+ SvXMLExport& GetExport() { return m_rExport; }
+ const SvXMLExport& GetExport() const { return m_rExport; }
bool exportStyle(
const css::uno::Reference< css::style::XStyle > & rStyle,