summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2013-08-12 21:48:49 +0300
committerTor Lillqvist <tlillqvist@suse.com>2013-08-12 23:47:07 +0300
commit4530f16f07c9ea55242081c1ba826df1b358ba7e (patch)
treee511515295c18120b95f1a4847d19ead44ee5591 /cui
parent14f9da1c6c9504deec83d6ab5975cba118d2b165 (diff)
WaE: '&=' : unsafe mix of type 'sal_Bool' and type 'bool' in operation
Change-Id: I2ffffe38b479a6116bfeff37c78cc15e5e26cee5
Diffstat (limited to 'cui')
-rw-r--r--cui/source/tabpages/numpages.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx
index 75aca2e95ab0..24dfe30cd7dd 100644
--- a/cui/source/tabpages/numpages.cxx
+++ b/cui/source/tabpages/numpages.cxx
@@ -1432,7 +1432,7 @@ void SvxNumOptionsTabPage::InitControls()
bSamePrefix = aNumFmtArr[i]->GetPrefix() == aNumFmtArr[nLvl]->GetPrefix();
bSameSuffix = aNumFmtArr[i]->GetSuffix() == aNumFmtArr[nLvl]->GetSuffix();
bAllLevel &= aNumFmtArr[i]->GetIncludeUpperLevels() == aNumFmtArr[nLvl]->GetIncludeUpperLevels();
- bSameCharFmt &= sFirstCharFmt == aNumFmtArr[i]->GetCharFmtName();
+ bSameCharFmt &= (sal_Bool) (sFirstCharFmt == aNumFmtArr[i]->GetCharFmtName());
bSameVOrient &= eFirstOrient == aNumFmtArr[i]->GetVertOrient();
if(bShowBitmap && bSameSize)
bSameSize &= aNumFmtArr[i]->GetGraphicSize() == aFirstSize;