summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/starcalc/scflt.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/starcalc/scflt.cxx')
-rw-r--r--sc/source/filter/starcalc/scflt.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/starcalc/scflt.cxx b/sc/source/filter/starcalc/scflt.cxx
index 1a6ad39e0ff5..66b8876897c9 100644
--- a/sc/source/filter/starcalc/scflt.cxx
+++ b/sc/source/filter/starcalc/scflt.cxx
@@ -1776,7 +1776,7 @@ void Sc10Import::LoadColAttr(SCCOL Col, SCTAB Tab)
{
SCROW nEnd = static_cast<SCROW>(pColData->Row);
nValue1 = pColData->Value;
- if ((nStart <= nEnd) && (nValue1))
+ if ((nStart <= nEnd) && nValue1)
{
ScPatternAttr aScPattern(pDoc->GetPool());
if ((nValue1 & atBold) == atBold)
@@ -1800,7 +1800,7 @@ void Sc10Import::LoadColAttr(SCCOL Col, SCTAB Tab)
{
SCROW nEnd = static_cast<SCROW>(pColData->Row);
nValue1 = pColData->Value;
- if ((nStart <= nEnd) && (nValue1))
+ if ((nStart <= nEnd) && nValue1)
{
ScPatternAttr aScPattern(pDoc->GetPool());
sal_uInt16 HorJustify = (nValue1 & 0x000F);
@@ -2072,7 +2072,7 @@ void Sc10Import::LoadColAttr(SCCOL Col, SCTAB Tab)
{
SCROW nEnd = static_cast<SCROW>(pColData->Row);
nValue1 = pColData->Value;
- if ((nStart <= nEnd) && (nValue1))
+ if ((nStart <= nEnd) && nValue1)
{
sal_uLong nKey = 0;
sal_uInt16 nFormat = (nValue1 & 0x00FF);