diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-04-07 14:30:26 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-04-07 23:03:00 +0200 |
commit | bcf91144808232fa0d92184d2f1c09e5eaa1e86c (patch) | |
tree | a15f89af33c0f163a52ff57cb7b152b191f9b4ba /include | |
parent | 6b40d5b2a340dced710ed66ed70cb7a670c5a4c1 (diff) |
Prefix SfxStyleSheetBase::pPool member
...just that one member; came in handy when researching a failure, and don't
want to loose that improvement.
Change-Id: Ia5434c4bd8131c37f93d32ce840859469ac258ef
Reviewed-on: https://gerrit.libreoffice.org/52553
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/style.hxx | 4 |
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; } |