diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-07-04 21:13:16 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-07-04 21:51:26 +0200 |
commit | b252ffd184dec7fd1adfd826dbb5f0fb67d2ea05 (patch) | |
tree | 812141c86304fa8ecbec1b61f0e00f36446a92c9 | |
parent | d856ae2f4d52aff52768a514d8a1b32138bd206a (diff) |
warning C4805 unsafe mixture of type sal_Bool and type bool
Change-Id: I8a144c153664af0be73cd2a8822664b2fcb612e3
-rw-r--r-- | cui/source/tabpages/numpages.cxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx index d0b3ffe22079..692872c55b7b 100644 --- a/cui/source/tabpages/numpages.cxx +++ b/cui/source/tabpages/numpages.cxx @@ -1407,19 +1407,19 @@ void SvxNumOptionsTabPage::Reset( const SfxItemSet& rSet ) void SvxNumOptionsTabPage::InitControls() { - sal_Bool bShowBullet = sal_True; - sal_Bool bShowBitmap = sal_True; - sal_Bool bSameType = sal_True; - sal_Bool bSameStart = sal_True; - sal_Bool bSamePrefix = sal_True; - sal_Bool bSameSuffix = sal_True; - sal_Bool bAllLevel = sal_True; - sal_Bool bSameCharFmt = sal_True; - sal_Bool bSameVOrient = sal_True; - sal_Bool bSameSize = sal_True; - sal_Bool bSameBulColor = sal_True; - sal_Bool bSameBulRelSize= sal_True; - sal_Bool bSameAdjust = sal_True; + bool bShowBullet = true; + bool bShowBitmap = true; + bool bSameType = true; + bool bSameStart = true; + bool bSamePrefix = true; + bool bSameSuffix = true; + bool bAllLevel = true; + sal_Bool bSameCharFmt = true; + sal_Bool bSameVOrient = true; + bool bSameSize = true; + bool bSameBulColor = true; + bool bSameBulRelSize= true; + bool bSameAdjust = true; const SvxNumberFormat* aNumFmtArr[SVX_MAX_NUM]; String sFirstCharFmt; |