summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/svl/style.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svl/style.hxx b/include/svl/style.hxx
index 48f0e1cba7ae..b30ddfe82ab1 100644
--- a/include/svl/style.hxx
+++ b/include/svl/style.hxx
@@ -98,7 +98,7 @@ private:
friend class SfxStyleSheetBasePool;
protected:
- SfxStyleSheetBasePool* pPool; // related pool
+ SfxStyleSheetBasePool* m_pPool; // related pool
SfxStyleFamily nFamily;
OUString aName, aParent, aFollow;
@@ -139,7 +139,7 @@ public:
virtual bool IsUsed() const; // Default true
virtual OUString GetDescription( MapUnit eMetric );
- SfxStyleSheetBasePool& GetPool() { return *pPool; }
+ SfxStyleSheetBasePool& GetPool() { return *m_pPool; }
SfxStyleFamily GetFamily() const { return nFamily; }
sal_uInt16 GetMask() const { return nMask; }
void SetMask( sal_uInt16 mask) { nMask = mask; }