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

cui: prefix members of SvxAreaTabPage

m_pColorList = pColorList;

is hopefully more readable than

pColorList = pColTab;

Change-Id: I3981a9907fe3e772aec00b95477e109d42f72655
üst 047ebb1d
...@@ -77,8 +77,8 @@ protected: ...@@ -77,8 +77,8 @@ protected:
public: public:
SvxAreaTabDialog( vcl::Window* pParent, const SfxItemSet* pAttr, SdrModel* pModel, bool bShadow ); SvxAreaTabDialog( vcl::Window* pParent, const SfxItemSet* pAttr, SdrModel* pModel, bool bShadow );
void SetNewColorList( XColorListRef pColTab ) void SetNewColorList( XColorListRef pColorList )
{ mpNewColorList = pColTab; } { mpNewColorList = pColorList; }
XColorListRef GetNewColorList() const { return mpNewColorList; } XColorListRef GetNewColorList() const { return mpNewColorList; }
const XColorListRef GetColorList() const { return mpColorList; } const XColorListRef GetColorList() const { return mpColorList; }
...@@ -223,13 +223,13 @@ private: ...@@ -223,13 +223,13 @@ private:
VclPtr<SvxXRectPreview> m_pCtlXRectPreview; VclPtr<SvxXRectPreview> m_pCtlXRectPreview;
const SfxItemSet& rOutAttrs; const SfxItemSet& m_rOutAttrs;
RECT_POINT eRP; RECT_POINT m_eRP;
XColorListRef pColorList; XColorListRef m_pColorList;
XGradientListRef pGradientList; XGradientListRef m_pGradientList;
XHatchListRef pHatchingList; XHatchListRef m_pHatchingList;
XBitmapListRef pBitmapList; XBitmapListRef m_pBitmapList;
// Placeholders for pointer-based entries; these will be inited // Placeholders for pointer-based entries; these will be inited
// to point to these so that the page is usable without that // to point to these so that the page is usable without that
...@@ -238,22 +238,22 @@ private: ...@@ -238,22 +238,22 @@ private:
ChangeType maFixed_ChangeType; ChangeType maFixed_ChangeType;
bool maFixed_sal_Bool; bool maFixed_sal_Bool;
ChangeType* pnColorListState; ChangeType* m_pnColorListState;
ChangeType* pnBitmapListState; ChangeType* m_pnBitmapListState;
ChangeType* pnGradientListState; ChangeType* m_pnGradientListState;
ChangeType* pnHatchingListState; ChangeType* m_pnHatchingListState;
sal_uInt16 nPageType; sal_uInt16 m_nPageType;
sal_uInt16 nDlgType; sal_uInt16 m_nDlgType;
sal_Int32 nPos; sal_Int32 m_nPos;
bool* pbAreaTP; bool* m_pbAreaTP;
XFillAttrSetItem aXFillAttr; XFillAttrSetItem m_aXFillAttr;
SfxItemSet& rXFSet; SfxItemSet& m_rXFSet;
SfxMapUnit ePoolUnit; SfxMapUnit m_ePoolUnit;
FieldUnit eFUnit; FieldUnit m_eFUnit;
//UUUU //UUUU
bool mbOfferImportButton; bool mbOfferImportButton;
...@@ -298,22 +298,22 @@ public: ...@@ -298,22 +298,22 @@ public:
virtual sfxpg DeactivatePage( SfxItemSet* pSet ) SAL_OVERRIDE; virtual sfxpg DeactivatePage( SfxItemSet* pSet ) SAL_OVERRIDE;
virtual void PointChanged( vcl::Window* pWindow, RECT_POINT eRP ) SAL_OVERRIDE; virtual void PointChanged( vcl::Window* pWindow, RECT_POINT eRP ) SAL_OVERRIDE;
void SetColorList( XColorListRef pColTab ) { pColorList = pColTab; } void SetColorList( XColorListRef pColorList ) { m_pColorList = pColorList; }
void SetGradientList( XGradientListRef pGrdLst) void SetGradientList( XGradientListRef pGrdLst)
{ pGradientList = pGrdLst; } { m_pGradientList = pGrdLst; }
void SetHatchingList( XHatchListRef pHtchLst) void SetHatchingList( XHatchListRef pHtchLst)
{ pHatchingList = pHtchLst; } { m_pHatchingList = pHtchLst; }
void SetBitmapList( XBitmapListRef pBmpLst) { pBitmapList = pBmpLst; } void SetBitmapList( XBitmapListRef pBmpLst) { m_pBitmapList = pBmpLst; }
void SetPageType( sal_uInt16 nInType ) { nPageType = nInType; } void SetPageType( sal_uInt16 nInType ) { m_nPageType = nInType; }
void SetDlgType( sal_uInt16 nInType ) { nDlgType = nInType; } void SetDlgType( sal_uInt16 nInType ) { m_nDlgType = nInType; }
void SetPos( sal_uInt16 nInPos ) { nPos = nInPos; } void SetPos( sal_uInt16 nInPos ) { m_nPos = nInPos; }
void SetAreaTP( bool* pIn ) { pbAreaTP = pIn; } void SetAreaTP( bool* pIn ) { m_pbAreaTP = pIn; }
virtual void PageCreated(const SfxAllItemSet& aSet) SAL_OVERRIDE; virtual void PageCreated(const SfxAllItemSet& aSet) SAL_OVERRIDE;
void SetColorChgd( ChangeType* pIn ) { pnColorListState = pIn; } void SetColorChgd( ChangeType* pIn ) { m_pnColorListState = pIn; }
void SetGrdChgd( ChangeType* pIn ) { pnGradientListState = pIn; } void SetGrdChgd( ChangeType* pIn ) { m_pnGradientListState = pIn; }
void SetHtchChgd( ChangeType* pIn ) { pnHatchingListState = pIn; } void SetHtchChgd( ChangeType* pIn ) { m_pnHatchingListState = pIn; }
void SetBmpChgd( ChangeType* pIn ) { pnBitmapListState = pIn; } void SetBmpChgd( ChangeType* pIn ) { m_pnBitmapListState = pIn; }
}; };
......
This diff is collapsed.
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