diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-03-14 00:24:24 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-03-14 00:41:32 +0100 |
commit | 7f3628e54d4470cac6d51659d1b1bec5fb4f4e70 (patch) | |
tree | 48b6394de12b102c6f88ba1af15fedf964171fa1 /sw/inc/viscrs.hxx | |
parent | be500fc6edfcc192ac71f1a4cc2bd7ab33328489 (diff) |
sw: prefix members of SwSelPaintRects
Change-Id: I527151198635ced3d1be917bc0396f7f062ed868
Diffstat (limited to 'sw/inc/viscrs.hxx')
-rw-r--r-- | sw/inc/viscrs.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/inc/viscrs.hxx b/sw/inc/viscrs.hxx index 855107d86599..a96d366c596e 100644 --- a/sw/inc/viscrs.hxx +++ b/sw/inc/viscrs.hxx @@ -66,21 +66,21 @@ class SwSelPaintRects : public SwRects friend void _InitCore(); friend void _FinitCore(); - static long nPixPtX, nPixPtY; - static MapMode *pMapMode; + static long s_nPixPtX, s_nPixPtY; + static MapMode *s_pMapMode; - const SwCrsrShell* pCShell; + const SwCrsrShell* m_pCursorShell; #if HAVE_FEATURE_DESKTOP || defined(ANDROID) - sdr::overlay::OverlayObject* mpCursorOverlay; + sdr::overlay::OverlayObject* m_pCursorOverlay; - // access to mpCursorOverlay for swapContent - sdr::overlay::OverlayObject* getCursorOverlay() const { return mpCursorOverlay; } - void setCursorOverlay(sdr::overlay::OverlayObject* pNew) { mpCursorOverlay = pNew; } + // access to m_pCursorOverlay for swapContent + sdr::overlay::OverlayObject* getCursorOverlay() const { return m_pCursorOverlay; } + void setCursorOverlay(sdr::overlay::OverlayObject* pNew) { m_pCursorOverlay = pNew; } #endif - bool mbShowTxtInputFldOverlay; - sw::overlay::OverlayRangesOutline* mpTxtInputFldOverlay; + bool m_bShowTxtInputFldOverlay; + sw::overlay::OverlayRangesOutline* m_pTxtInputFldOverlay; void HighlightInputFld(); @@ -93,7 +93,7 @@ public: virtual void FillStartEnd(SwRect& rStart, SwRect& rEnd) const = 0; // #i75172# in SwCrsrShell::CreateCrsr() the content of SwSelPaintRects is exchanged. To - // make a complete swap access to mpCursorOverlay is needed there + // make a complete swap access to m_pCursorOverlay is needed there void swapContent(SwSelPaintRects& rSwap); void Show(); @@ -102,10 +102,10 @@ public: inline void SetShowTxtInputFldOverlay( const bool bShow ) { - mbShowTxtInputFldOverlay = bShow; + m_bShowTxtInputFldOverlay = bShow; } - const SwCrsrShell* GetShell() const { return pCShell; } + const SwCrsrShell* GetShell() const { return m_pCursorShell; } // check current MapMode of the shell and set possibly the static members. // Optional set the parameters pX, pY static void Get1PixelInLogic( const SwViewShell& rSh, |