summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-11-10 07:48:22 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-11-10 07:48:55 +0100
commitb2831b5bb26ae8cbb2b1796f390e1b1b90eb4202 (patch)
tree769dee840a1cb00232969a6beafe91b626ef3ce2 /sw/source/uibase/inc
parentea10e890041e36727709260cadb18bb8f543b4c1 (diff)
sw: prefix members of SwNavigationPI
Change-Id: I801c9c93921719955431716c6e56e79eed529800
Diffstat (limited to 'sw/source/uibase/inc')
-rw-r--r--sw/source/uibase/inc/navipi.hxx84
1 files changed, 42 insertions, 42 deletions
diff --git a/sw/source/uibase/inc/navipi.hxx b/sw/source/uibase/inc/navipi.hxx
index b2d07e8a24b6..5d74116ab635 100644
--- a/sw/source/uibase/inc/navipi.hxx
+++ b/sw/source/uibase/inc/navipi.hxx
@@ -57,45 +57,45 @@ class SwNavigationPI : public vcl::Window,
friend class SwContentTree;
friend class SwGlobalTree;
- VclPtr<SwNavHelpToolBox> aContentToolBox;
- VclPtr<SwHelpToolBox> aGlobalToolBox;
- ImageList aContentImageList;
- VclPtr<SwContentTree> aContentTree;
- VclPtr<SwGlobalTree> aGlobalTree;
- VclPtr<ListBox> aDocListBox;
- Idle aPageChgIdle;
- OUString sContentFileName;
- OUString aContextArr[3];
- OUString aStatusArr[4];
- Point aBoxBottomLeft; // Pos when Box is at bottom
-
- SfxObjectShellLock *pxObjectShell;
- SwView *pContentView;
- SwWrtShell *pContentWrtShell;
- SwView *pActContView;
- SwView *pCreateView;
- VclPtr<SfxPopupWindow> pPopupWindow;
- VclPtr<SfxPopupWindow> pFloatingWindow;
-
- SfxChildWindowContext* pContextWin;
-
- SwNavigationConfig *pConfig;
- SfxBindings &rBindings;
-
- long nDocLBIniHeight;
- long nWishWidth;
- sal_uInt16 nAutoMarkIdx;
- RegionMode nRegionMode; // 0 - URL, 1 - region with link 2 - region without link
- short nZoomIn;
- short nZoomOutInit;
- short nZoomOut;
-
- bool bSmallMode : 1;
- bool bIsZoomedIn : 1;
- bool bPageCtrlsVisible : 1;
- bool bGlobalMode : 1;
-
- bool _IsZoomedIn() const {return bIsZoomedIn;}
+ VclPtr<SwNavHelpToolBox> m_aContentToolBox;
+ VclPtr<SwHelpToolBox> m_aGlobalToolBox;
+ ImageList m_aContentImageList;
+ VclPtr<SwContentTree> m_aContentTree;
+ VclPtr<SwGlobalTree> m_aGlobalTree;
+ VclPtr<ListBox> m_aDocListBox;
+ Idle m_aPageChgIdle;
+ OUString m_sContentFileName;
+ OUString m_aContextArr[3];
+ OUString m_aStatusArr[4];
+ Point m_aBoxBottomLeft; // Pos when Box is at bottom
+
+ SfxObjectShellLock *m_pxObjectShell;
+ SwView *m_pContentView;
+ SwWrtShell *m_pContentWrtShell;
+ SwView *m_pActContView;
+ SwView *m_pCreateView;
+ VclPtr<SfxPopupWindow> m_pPopupWindow;
+ VclPtr<SfxPopupWindow> m_pFloatingWindow;
+
+ SfxChildWindowContext* m_pContextWin;
+
+ SwNavigationConfig *m_pConfig;
+ SfxBindings &m_rBindings;
+
+ long m_nDocLBIniHeight;
+ long m_nWishWidth;
+ sal_uInt16 m_nAutoMarkIdx;
+ RegionMode m_nRegionMode; // 0 - URL, 1 - region with link 2 - region without link
+ short m_nZoomIn;
+ short m_nZoomOutInit;
+ short m_nZoomOut;
+
+ bool m_bSmallMode : 1;
+ bool m_bIsZoomedIn : 1;
+ bool m_bPageCtrlsVisible : 1;
+ bool m_bGlobalMode : 1;
+
+ bool _IsZoomedIn() const {return m_bIsZoomedIn;}
void _ZoomOut();
void _ZoomIn();
@@ -132,7 +132,7 @@ protected:
NumEditAction& GetPageEdit();
bool ToggleTree();
- void SetGlobalMode(bool bSet) {bGlobalMode = bSet;}
+ void SetGlobalMode(bool bSet) {m_bGlobalMode = bSet;}
public:
@@ -151,14 +151,14 @@ public:
static OUString CreateDropFileName( TransferableDataHelper& rData );
static OUString CleanEntry(const OUString& rEntry);
- RegionMode GetRegionDropMode() const {return nRegionMode;}
+ RegionMode GetRegionDropMode() const {return m_nRegionMode;}
void SetRegionDropMode(RegionMode nNewMode);
sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt );
sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt );
bool IsGlobalDoc() const;
- bool IsGlobalMode() const {return bGlobalMode;}
+ bool IsGlobalMode() const {return m_bGlobalMode;}
SwView* GetCreateView() const;
void CreateNavigationTool(const Rectangle& rRect, bool bSetFocus, vcl::Window *pParent);