summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-19 09:15:12 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-19 09:18:05 +0200
commitca0d0f65c616b3ad56e41812870129e060e8dadc (patch)
treeb9382b4707d327b60be7983696ecc3f3d7f1be7c /sw/inc
parent6aa90a44f23cc469c796d5fe79b1f9841ff5e847 (diff)
sw: prefix members of SwXStyle
Change-Id: I0f80f52c31c68521b89faf123e45ce458883d76b
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/unostyle.hxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/sw/inc/unostyle.hxx b/sw/inc/unostyle.hxx
index 4b75ead437e4..58d7b64ef7dd 100644
--- a/sw/inc/unostyle.hxx
+++ b/sw/inc/unostyle.hxx
@@ -168,23 +168,23 @@ class SwXStyle : public cppu::WeakImplHelper
friend class SwXStyleFamily;
SwDoc* m_pDoc;
OUString m_sStyleName;
- SfxStyleSheetBasePool* pBasePool;
- SfxStyleFamily eFamily; // for Notify
+ SfxStyleSheetBasePool* m_pBasePool;
+ SfxStyleFamily m_eFamily; // for Notify
- bool bIsDescriptor : 1;
- bool bIsConditional : 1;
+ bool m_bIsDescriptor : 1;
+ bool m_bIsConditional : 1;
OUString m_sParentStyleName;
- SwStyleProperties_Impl* pPropImpl;
+ SwStyleProperties_Impl* m_pPropertiesImpl;
void ApplyDescriptorProperties();
protected:
void Invalidate();
- const SfxStyleSheetBasePool* GetBasePool() const {return pBasePool;}
- SfxStyleSheetBasePool* GetBasePool() {return pBasePool;}
+ const SfxStyleSheetBasePool* GetBasePool() const {return m_pBasePool;}
+ SfxStyleSheetBasePool* GetBasePool() {return m_pBasePool;}
void SetStyleName(const OUString& rSet){ m_sStyleName = rSet;}
- SwStyleProperties_Impl* GetPropImpl(){return pPropImpl;}
+ SwStyleProperties_Impl* GetPropImpl(){return m_pPropertiesImpl;}
com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > mxStyleData;
com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > mxStyleFamily;
@@ -259,16 +259,16 @@ public:
virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
OUString GetStyleName() const { return m_sStyleName;}
- SfxStyleFamily GetFamily() const {return eFamily;}
+ SfxStyleFamily GetFamily() const {return m_eFamily;}
- bool IsDescriptor() const {return bIsDescriptor;}
- bool IsConditional() const { return bIsConditional;}
+ bool IsDescriptor() const {return m_bIsDescriptor;}
+ bool IsConditional() const { return m_bIsConditional;}
OUString GetParentStyleName() const { return m_sParentStyleName;}
void SetDoc(SwDoc* pDc, SfxStyleSheetBasePool* pPool)
{
- bIsDescriptor = false; m_pDoc = pDc;
- pBasePool = pPool;
- StartListening(*pBasePool);
+ m_bIsDescriptor = false; m_pDoc = pDc;
+ m_pBasePool = pPool;
+ StartListening(*m_pBasePool);
}
SwDoc* GetDoc() const { return m_pDoc; }
};