summaryrefslogtreecommitdiff
path: root/include/sfx2
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-04-18 08:42:54 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-04-18 07:15:29 +0000
commit98b6e3875b1ef377d57b5507651cd2abc17d0d89 (patch)
tree6810b97ae9017a70de721b794e75b1933314c546 /include/sfx2
parentbb92c93a964f71ce574ddd940be6821da50b7235 (diff)
SfxViewFrame: rename members missing their prefixes
Change-Id: Ib690fed0a0ab76325370c2ca42d4e25c4d0a2882 Reviewed-on: https://gerrit.libreoffice.org/24186 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'include/sfx2')
-rw-r--r--include/sfx2/viewfrm.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/sfx2/viewfrm.hxx b/include/sfx2/viewfrm.hxx
index d02b56bb361f..3a3e8dd6a5e3 100644
--- a/include/sfx2/viewfrm.hxx
+++ b/include/sfx2/viewfrm.hxx
@@ -64,12 +64,12 @@ namespace basegfx
class SFX2_DLLPUBLIC SfxViewFrame: public SfxShell, public SfxListener
{
- struct SfxViewFrame_Impl* pImp;
+ struct SfxViewFrame_Impl* m_pImp;
- SfxObjectShellRef xObjSh;
- SfxDispatcher* pDispatcher;
- SfxBindings* pBindings;
- sal_uInt16 nAdjustPosPixelLock;
+ SfxObjectShellRef m_xObjSh;
+ SfxDispatcher* m_pDispatcher;
+ SfxBindings* m_pBindings;
+ sal_uInt16 m_nAdjustPosPixelLock;
private:
SAL_DLLPRIVATE void Construct_Impl( SfxObjectShell *pObjSh=nullptr );
@@ -113,20 +113,20 @@ public:
SfxViewFrame* GetParentViewFrame() const;
using SfxShell::GetDispatcher;
- SfxDispatcher* GetDispatcher() { return pDispatcher; }
- SfxBindings& GetBindings() { return *pBindings; }
- const SfxBindings& GetBindings() const { return *pBindings; }
+ SfxDispatcher* GetDispatcher() { return m_pDispatcher; }
+ SfxBindings& GetBindings() { return *m_pBindings; }
+ const SfxBindings& GetBindings() const { return *m_pBindings; }
vcl::Window& GetWindow() const;
SfxProgress* GetProgress() const;
SfxObjectShell* GetObjectShell() const
- { return xObjSh; }
+ { return m_xObjSh; }
void LockAdjustPosSizePixel()
- { nAdjustPosPixelLock++; }
+ { m_nAdjustPosPixelLock++; }
void UnlockAdjustPosSizePixel()
- { nAdjustPosPixelLock--; }
+ { m_nAdjustPosPixelLock--; }
void DoAdjustPosSizePixel( SfxViewShell * pSh,
const Point &rPos, const Size &rSize );
void Show();