summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/xmloff/XMLConstantsPropertyHandler.hxx6
-rw-r--r--include/xmloff/XMLTextMasterPageContext.hxx24
-rw-r--r--include/xmloff/xmlnume.hxx4
-rw-r--r--include/xmloff/xmlnumi.hxx10
4 files changed, 22 insertions, 22 deletions
diff --git a/include/xmloff/XMLConstantsPropertyHandler.hxx b/include/xmloff/XMLConstantsPropertyHandler.hxx
index 5db0aa63f675..7152c7180932 100644
--- a/include/xmloff/XMLConstantsPropertyHandler.hxx
+++ b/include/xmloff/XMLConstantsPropertyHandler.hxx
@@ -34,14 +34,14 @@ struct SvXMLEnumMapEntry;
*/
class XMLOFF_DLLPUBLIC XMLConstantsPropertyHandler: public XMLPropertyHandler
{
- const SvXMLEnumMapEntry<sal_uInt16> *pMap;
- const enum ::xmloff::token::XMLTokenEnum eDefault;
+ const SvXMLEnumMapEntry<sal_uInt16> *m_pMap;
+ const enum ::xmloff::token::XMLTokenEnum m_eDefault;
public:
template<typename EnumT>
XMLConstantsPropertyHandler( const SvXMLEnumMapEntry<EnumT> *pM,
enum ::xmloff::token::XMLTokenEnum eDflt)
- : pMap(reinterpret_cast<const SvXMLEnumMapEntry<sal_uInt16>*>(pM)), eDefault(eDflt) {}
+ : m_pMap(reinterpret_cast<const SvXMLEnumMapEntry<sal_uInt16>*>(pM)), m_eDefault(eDflt) {}
// Just needed for virtual destruction
virtual ~XMLConstantsPropertyHandler() override;
diff --git a/include/xmloff/XMLTextMasterPageContext.hxx b/include/xmloff/XMLTextMasterPageContext.hxx
index d39159890788..36243d6005b5 100644
--- a/include/xmloff/XMLTextMasterPageContext.hxx
+++ b/include/xmloff/XMLTextMasterPageContext.hxx
@@ -31,24 +31,24 @@ namespace com::sun::star {
class XMLOFF_DLLPUBLIC XMLTextMasterPageContext : public SvXMLStyleContext
{
- OUString sFollow;
- OUString sPageMasterName;
+ OUString m_sFollow;
+ OUString m_sPageMasterName;
OUString m_sDrawingPageStyle;
- css::uno::Reference < css::style::XStyle > xStyle;
+ css::uno::Reference < css::style::XStyle > m_xStyle;
- bool bInsertHeader;
- bool bInsertFooter;
- bool bInsertHeaderLeft;
- bool bInsertFooterLeft;
- bool bInsertHeaderFirst;
- bool bInsertFooterFirst;
- bool bHeaderInserted;
- bool bFooterInserted;
+ bool m_bInsertHeader;
+ bool m_bInsertFooter;
+ bool m_bInsertHeaderLeft;
+ bool m_bInsertFooterLeft;
+ bool m_bInsertHeaderFirst;
+ bool m_bInsertFooterFirst;
+ bool m_bHeaderInserted;
+ bool m_bFooterInserted;
SAL_DLLPRIVATE css::uno::Reference< css::style::XStyle > Create();
protected:
- const css::uno::Reference< css::style::XStyle >& GetStyle() const { return xStyle; }
+ const css::uno::Reference< css::style::XStyle >& GetStyle() const { return m_xStyle; }
public:
diff --git a/include/xmloff/xmlnume.hxx b/include/xmloff/xmlnume.hxx
index 85f78047ee80..705af6e78d0c 100644
--- a/include/xmloff/xmlnume.hxx
+++ b/include/xmloff/xmlnume.hxx
@@ -37,7 +37,7 @@ class XMLTextListAutoStylePool;
class XMLOFF_DLLPUBLIC SvxXMLNumRuleExport final
{
- SvXMLExport& rExport;
+ SvXMLExport& m_rExport;
// Boolean indicating, if properties for position-and-space-mode LABEL_ALIGNMENT
// are exported or not. (#i89178#)
// These properties have been introduced in ODF 1.2. Thus, its export have
@@ -52,7 +52,7 @@ class XMLOFF_DLLPUBLIC SvxXMLNumRuleExport final
SAL_DLLPRIVATE void exportStyle( const css::uno::Reference< css::style::XStyle >& rStyle );
SAL_DLLPRIVATE void exportOutline();
- SvXMLExport& GetExport() { return rExport; }
+ SvXMLExport& GetExport() { return m_rExport; }
public:
diff --git a/include/xmloff/xmlnumi.hxx b/include/xmloff/xmlnumi.hxx
index 4adfd437b95d..e79978f2e77d 100644
--- a/include/xmloff/xmlnumi.hxx
+++ b/include/xmloff/xmlnumi.hxx
@@ -36,12 +36,12 @@ typedef std::vector<rtl::Reference<SvxXMLListLevelStyleContext_Impl>> SvxXMLList
class XMLOFF_DLLPUBLIC SvxXMLListStyleContext final
: public SvXMLStyleContext
{
- css::uno::Reference< css::container::XIndexReplace > xNumRules;
+ css::uno::Reference< css::container::XIndexReplace > m_xNumRules;
- std::unique_ptr<SvxXMLListStyle_Impl> pLevelStyles;
+ std::unique_ptr<SvxXMLListStyle_Impl> m_pLevelStyles;
- bool bConsecutive : 1;
- bool bOutline : 1;
+ bool m_bConsecutive : 1;
+ bool m_bOutline : 1;
SAL_DLLPRIVATE virtual void SetAttribute( sal_Int32 nElement,
const OUString& rValue ) override;
@@ -61,7 +61,7 @@ public:
const css::uno::Reference< css::container::XIndexReplace> & rNumRule) const;
const css::uno::Reference< css::container::XIndexReplace >& GetNumRules() const
- { return xNumRules; }
+ { return m_xNumRules; }
static css::uno::Reference< css::container::XIndexReplace >
CreateNumRule(