diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-03-31 14:04:47 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-03-31 20:08:52 +0200 |
commit | 17757784c02a28ca2c3f70c64ae29f2c61c58249 (patch) | |
tree | 6cf5d627deff22fd63140f55d66188af9544297a /sw/inc/drawdoc.hxx | |
parent | d1e63af0fb5c9aa344baae0c34d069385b8f0736 (diff) |
sw: prefix members of SwDrawModel
Change-Id: Ica69a3c94e674c12619ec0f5c849b8e82dff6090
Diffstat (limited to 'sw/inc/drawdoc.hxx')
-rw-r--r-- | sw/inc/drawdoc.hxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sw/inc/drawdoc.hxx b/sw/inc/drawdoc.hxx index 6afd3fd042fe..0e4ea36e5417 100644 --- a/sw/inc/drawdoc.hxx +++ b/sw/inc/drawdoc.hxx @@ -26,13 +26,15 @@ class SwDocShell; class SwDrawModel : public FmFormModel { - SwDoc* pDoc; +private: + SwDoc* m_pDoc; + public: SwDrawModel( SwDoc* pDoc ); virtual ~SwDrawModel(); - const SwDoc& GetDoc() const { return *pDoc; } - SwDoc& GetDoc() { return *pDoc; } + const SwDoc& GetDoc() const { return *m_pDoc; } + SwDoc& GetDoc() { return *m_pDoc; } virtual SdrPage* AllocPage(bool bMasterPage) SAL_OVERRIDE; |