summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/formatsh.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/view/formatsh.cxx')
-rw-r--r--sc/source/ui/view/formatsh.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/view/formatsh.cxx b/sc/source/ui/view/formatsh.cxx
index 2cce67118824..f7315debd5de 100644
--- a/sc/source/ui/view/formatsh.cxx
+++ b/sc/source/ui/view/formatsh.cxx
@@ -2081,7 +2081,7 @@ void ScFormatShell::GetAttrState( SfxItemSet& rSet )
{
if(aCol != aBoxItem.GetBottom()->GetColor() )
bColDisable = true;
- if(!( aLine == *(aBoxItem.GetBottom())) )
+ if( aLine != *aBoxItem.GetBottom() )
bStyleDisable = true;
}
}
@@ -2100,7 +2100,7 @@ void ScFormatShell::GetAttrState( SfxItemSet& rSet )
{
if(aCol != aBoxItem.GetLeft()->GetColor() )
bColDisable = true;
- if(!( aLine == *(aBoxItem.GetLeft())) )
+ if( aLine != *aBoxItem.GetLeft() )
bStyleDisable = true;
}
}
@@ -2119,7 +2119,7 @@ void ScFormatShell::GetAttrState( SfxItemSet& rSet )
{
if(aCol != aBoxItem.GetRight()->GetColor() )
bColDisable = true;
- if(!( aLine == *(aBoxItem.GetRight())) )
+ if( aLine != *aBoxItem.GetRight() )
bStyleDisable = true;
}
}
@@ -2138,7 +2138,7 @@ void ScFormatShell::GetAttrState( SfxItemSet& rSet )
{
if(aCol != aInfoItem.GetVert()->GetColor() )
bColDisable = true;
- if(!( aLine == *(aInfoItem.GetVert())) )
+ if( aLine != *aInfoItem.GetVert() )
bStyleDisable = true;
}
}
@@ -2157,7 +2157,7 @@ void ScFormatShell::GetAttrState( SfxItemSet& rSet )
{
if(aCol != aInfoItem.GetHori()->GetColor() )
bColDisable = true;
- if(!( aLine == *(aInfoItem.GetHori())) )
+ if( aLine != *aInfoItem.GetHori() )
bStyleDisable = true;
}
}