diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-23 16:24:47 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-23 16:24:47 +0100 |
commit | 8f14c896cd4db960f7f0181819555fc6ea504821 (patch) | |
tree | bcf28ec8b6dc0a1c3892bcdc63e6cfa0140a36de /cui/source/tabpages | |
parent | cc2893834d8ac699dbb38b152f21f17f3debb06b (diff) |
bool improvements
Change-Id: Idaa24320585f3d2e3ca50c82b1a34fc2c523e56e
Diffstat (limited to 'cui/source/tabpages')
-rw-r--r-- | cui/source/tabpages/numpages.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/numpages.cxx b/cui/source/tabpages/numpages.cxx index 5e5b40008646..321293190d6b 100644 --- a/cui/source/tabpages/numpages.cxx +++ b/cui/source/tabpages/numpages.cxx @@ -1422,7 +1422,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 &= (sal_Bool) (sFirstCharFmt == aNumFmtArr[i]->GetCharFmtName()); + bSameCharFmt &= sFirstCharFmt == aNumFmtArr[i]->GetCharFmtName(); bSameVOrient &= eFirstOrient == aNumFmtArr[i]->GetVertOrient(); if(bShowBitmap && bSameSize) bSameSize &= aNumFmtArr[i]->GetGraphicSize() == aFirstSize; |