diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2019-10-29 21:37:20 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-10-30 08:36:24 +0100 |
commit | bb16c36512189c0ff0c72cdb49a7fd24ee8f474d (patch) | |
tree | 7332e7a63d8f0a256a79070ea502e68b1a312e2f /sd/inc | |
parent | 5adc833f960d57719d8784dfd53e6070b26bf034 (diff) |
svx: prefix members of SdrModel
See tdf#94879 for motivation.
Change-Id: I08d77b07092894b67f33ce4cdbe29302b61121d3
Reviewed-on: https://gerrit.libreoffice.org/81717
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/drawdoc.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/inc/drawdoc.hxx b/sd/inc/drawdoc.hxx index e0deb23993ac..304d4e282c78 100644 --- a/sd/inc/drawdoc.hxx +++ b/sd/inc/drawdoc.hxx @@ -133,7 +133,7 @@ class SD_DLLPUBLIC SdDrawDocument : public FmFormModel public: SAL_DLLPRIVATE void setDocAccTitle( const OUString& rTitle ) { msDocAccTitle = rTitle; } SAL_DLLPRIVATE const OUString& getDocAccTitle() const { return msDocAccTitle; } - SAL_DLLPRIVATE bool getDocReadOnly() const { return bReadOnly; } + SAL_DLLPRIVATE bool getDocReadOnly() const { return m_bReadOnly; } private: OUString msDocAccTitle; std::unique_ptr<SdOutliner> @@ -245,7 +245,7 @@ public: SAL_DLLPRIVATE virtual bool IsReadOnly() const override; SAL_DLLPRIVATE virtual void SetChanged(bool bFlag = true) override; - SAL_DLLPRIVATE SfxItemPool& GetPool() { return( *pItemPool ); } + SAL_DLLPRIVATE SfxItemPool& GetPool() { return( *m_pItemPool ); } SAL_DLLPRIVATE SdOutliner* GetOutliner(bool bCreateOutliner=true); SdOutliner* GetInternalOutliner(bool bCreateOutliner=true); |