Kaydet (Commit) 96a3ed19 authored tarafından Noel Grandin's avatar Noel Grandin

svx: sal_Bool->bool

Change-Id: I1c52c98c6208d8108620a2b175e946af8ed3bca1
üst 5e456cc3
...@@ -49,8 +49,8 @@ public: ...@@ -49,8 +49,8 @@ public:
virtual ~SvxHFPage(); virtual ~SvxHFPage();
void DisableDeleteQueryBox() { bDisableQueryBox = sal_True; } void DisableDeleteQueryBox() { bDisableQueryBox = true; }
void EnableBackgroundSelector( sal_Bool bNew ) { bEnableBackgroundSelector = bNew; } void EnableBackgroundSelector( bool bNew ) { bEnableBackgroundSelector = bNew; }
void EnableDynamicSpacing(); void EnableDynamicSpacing();
protected: protected:
...@@ -78,8 +78,8 @@ protected: ...@@ -78,8 +78,8 @@ protected:
sal_uInt16 nId; sal_uInt16 nId;
SfxItemSet* pBBSet; SfxItemSet* pBBSet;
sal_Bool bDisableQueryBox; bool bDisableQueryBox;
sal_Bool bEnableBackgroundSelector; bool bEnableBackgroundSelector;
bool bInReset; bool bInReset;
void InitHandler(); void InitHandler();
......
...@@ -158,8 +158,8 @@ SvxHFPage::SvxHFPage( Window* pParent, const SfxItemSet& rSet, sal_uInt16 nSetId ...@@ -158,8 +158,8 @@ SvxHFPage::SvxHFPage( Window* pParent, const SfxItemSet& rSet, sal_uInt16 nSetId
SfxTabPage( pParent, "HFFormatPage", "svx/ui/headfootformatpage.ui", rSet ), SfxTabPage( pParent, "HFFormatPage", "svx/ui/headfootformatpage.ui", rSet ),
nId ( nSetId ), nId ( nSetId ),
pBBSet ( NULL ), pBBSet ( NULL ),
bDisableQueryBox ( sal_False ), bDisableQueryBox ( false ),
bEnableBackgroundSelector ( sal_True ) bEnableBackgroundSelector ( true )
{ {
get(m_pCntSharedBox,"checkSameLR"); get(m_pCntSharedBox,"checkSameLR");
......
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