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

sw: prefix members of SwStdFontTabPage

Change-Id: Ia0de4c400937305baab7fef0e414777f0cd906e9
üst e22024c1
This diff is collapsed.
...@@ -125,53 +125,53 @@ public: ...@@ -125,53 +125,53 @@ public:
class SwStdFontTabPage : public SfxTabPage class SwStdFontTabPage : public SfxTabPage
{ {
friend class VclPtr<SwStdFontTabPage>; friend class VclPtr<SwStdFontTabPage>;
VclPtr<FixedText> pLabelFT; VclPtr<FixedText> m_pLabelFT;
VclPtr<ComboBox> pStandardBox; VclPtr<ComboBox> m_pStandardBox;
VclPtr<FontSizeBox> pStandardHeightLB; VclPtr<FontSizeBox> m_pStandardHeightLB;
VclPtr<ComboBox> pTitleBox ; VclPtr<ComboBox> m_pTitleBox ;
VclPtr<FontSizeBox> pTitleHeightLB; VclPtr<FontSizeBox> m_pTitleHeightLB;
VclPtr<ComboBox> pListBox ; VclPtr<ComboBox> m_pListBox ;
VclPtr<FontSizeBox> pListHeightLB; VclPtr<FontSizeBox> m_pListHeightLB;
VclPtr<ComboBox> pLabelBox ; VclPtr<ComboBox> m_pLabelBox ;
VclPtr<FontSizeBox> pLabelHeightLB; VclPtr<FontSizeBox> m_pLabelHeightLB;
VclPtr<ComboBox> pIdxBox ; VclPtr<ComboBox> m_pIdxBox ;
VclPtr<FontSizeBox> pIndexHeightLB; VclPtr<FontSizeBox> m_pIndexHeightLB;
VclPtr<PushButton> pStandardPB; VclPtr<PushButton> m_pStandardPB;
OUString sShellStd; OUString m_sShellStd;
OUString sShellTitle; OUString m_sShellTitle;
OUString sShellList; OUString m_sShellList;
OUString sShellLabel; OUString m_sShellLabel;
OUString sShellIndex; OUString m_sShellIndex;
VclPtr<SfxPrinter> pPrt; VclPtr<SfxPrinter> m_pPrt;
FontList* pFontList; FontList* m_pFontList;
SwStdFontConfig* pFontConfig; SwStdFontConfig* m_pFontConfig;
SwWrtShell* pWrtShell; SwWrtShell* m_pWrtShell;
LanguageType eLanguage; LanguageType m_eLanguage;
// only defaults were there? they were signed with the boxes // only defaults were there? they were signed with the boxes
bool bListDefault :1; bool m_bListDefault :1;
bool bSetListDefault :1; bool m_bSetListDefault :1;
bool bLabelDefault :1; bool m_bLabelDefault :1;
bool bSetLabelDefault :1; bool m_bSetLabelDefault :1;
bool bIdxDefault :1; bool m_bIdxDefault :1;
bool bSetIdxDefault :1; bool m_bSetIdxDefault :1;
bool bDeletePrinter :1; bool m_bDeletePrinter :1;
bool bListHeightDefault :1; bool m_bListHeightDefault :1;
bool bSetListHeightDefault :1; bool m_bSetListHeightDefault :1;
bool bLabelHeightDefault :1; bool m_bLabelHeightDefault :1;
bool bSetLabelHeightDefault :1; bool m_bSetLabelHeightDefault :1;
bool bIndexHeightDefault :1; bool m_bIndexHeightDefault :1;
bool bSetIndexHeightDefault :1; bool m_bSetIndexHeightDefault :1;
sal_uInt8 nFontGroup; //fontcfg.hxx: FONT_GROUP_[STANDARD|CJK|CTL] sal_uInt8 m_nFontGroup; //fontcfg.hxx: FONT_GROUP_[STANDARD|CJK|CTL]
OUString sScriptWestern; OUString m_sScriptWestern;
OUString sScriptAsian; OUString m_sScriptAsian;
OUString sScriptComplex; OUString m_sScriptComplex;
DECL_LINK_TYPED(StandardHdl, Button*, void ); DECL_LINK_TYPED(StandardHdl, Button*, void );
DECL_LINK_TYPED(ModifyHdl, Edit&, void ); DECL_LINK_TYPED(ModifyHdl, Edit&, void );
...@@ -190,7 +190,7 @@ public: ...@@ -190,7 +190,7 @@ public:
void SetFontMode(sal_uInt8 nGroup) void SetFontMode(sal_uInt8 nGroup)
{ {
nFontGroup = nGroup; m_nFontGroup = nGroup;
} }
virtual void PageCreated(const SfxAllItemSet& aSet) override; virtual void PageCreated(const SfxAllItemSet& aSet) override;
}; };
......
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