Kaydet (Commit) 73116917 authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: prefix members of SwWrapTabPage

Change-Id: I58d59680768d445c073c50b49a8b6976d7a636a0
üst 431598b9
This diff is collapsed.
...@@ -62,22 +62,22 @@ class SwWrapTabPage: public SfxTabPage ...@@ -62,22 +62,22 @@ class SwWrapTabPage: public SfxTabPage
VclPtr<CheckBox> m_pWrapOutlineCB; VclPtr<CheckBox> m_pWrapOutlineCB;
VclPtr<CheckBox> m_pWrapOutsideCB; VclPtr<CheckBox> m_pWrapOutsideCB;
sal_uInt16 nOldLeftMargin; sal_uInt16 m_nOldLeftMargin;
sal_uInt16 nOldRightMargin; sal_uInt16 m_nOldRightMargin;
sal_uInt16 nOldUpperMargin; sal_uInt16 m_nOldUpperMargin;
sal_uInt16 nOldLowerMargin; sal_uInt16 m_nOldLowerMargin;
RndStdIds nAnchorId; RndStdIds m_nAnchorId;
sal_uInt16 nHtmlMode; sal_uInt16 m_nHtmlMode;
Size aFrmSize; Size m_aFrmSize;
SwWrtShell* pWrtSh; SwWrtShell* m_pWrtSh;
bool bFormat; bool m_bFormat;
bool bNew; bool m_bNew;
bool bHtmlMode; bool m_bHtmlMode;
bool bDrawMode; bool m_bDrawMode;
bool bContourImage; bool m_bContourImage;
virtual ~SwWrapTabPage(); virtual ~SwWrapTabPage();
virtual void dispose() SAL_OVERRIDE; virtual void dispose() SAL_OVERRIDE;
...@@ -95,7 +95,7 @@ class SwWrapTabPage: public SfxTabPage ...@@ -95,7 +95,7 @@ class SwWrapTabPage: public SfxTabPage
using SfxTabPage::ActivatePage; using SfxTabPage::ActivatePage;
using SfxTabPage::DeactivatePage; using SfxTabPage::DeactivatePage;
static const sal_uInt16 aWrapPageRg[]; static const sal_uInt16 m_aWrapPageRg[];
public: public:
SwWrapTabPage(vcl::Window *pParent, const SfxItemSet &rSet); SwWrapTabPage(vcl::Window *pParent, const SfxItemSet &rSet);
...@@ -105,10 +105,10 @@ public: ...@@ -105,10 +105,10 @@ public:
virtual bool FillItemSet(SfxItemSet *rSet) SAL_OVERRIDE; virtual bool FillItemSet(SfxItemSet *rSet) SAL_OVERRIDE;
virtual void Reset(const SfxItemSet *rSet) SAL_OVERRIDE; virtual void Reset(const SfxItemSet *rSet) SAL_OVERRIDE;
static const sal_uInt16* GetRanges() { return aWrapPageRg; } static const sal_uInt16* GetRanges() { return m_aWrapPageRg; }
inline void SetNewFrame(bool bNewFrame) { bNew = bNewFrame; } inline void SetNewFrame(bool bNewFrame) { m_bNew = bNewFrame; }
inline void SetFormatUsed(bool bFormatUsed, bool bDrw) { bFormat = bFormatUsed; bDrawMode = bDrw; } inline void SetFormatUsed(bool bFormat, bool bDrawMode) { m_bFormat = bFormat; m_bDrawMode = bDrawMode; }
inline void SetShell(SwWrtShell* pSh) { pWrtSh = pSh; } inline void SetShell(SwWrtShell* pSh) { m_pWrtSh = pSh; }
}; };
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment