summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
Diffstat (limited to 'basic')
-rw-r--r--basic/source/sbx/sbxvalue.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/sbx/sbxvalue.cxx b/basic/source/sbx/sbxvalue.cxx
index 476e4c224345..2103856169b3 100644
--- a/basic/source/sbx/sbxvalue.cxx
+++ b/basic/source/sbx/sbxvalue.cxx
@@ -956,7 +956,7 @@ bool SbxValue::Compute( SbxOperator eOp, const SbxValue& rOp )
{
if( rOp.GetType() == SbxEMPTY )
{
- if ( !bVBAInterop || ( bVBAInterop && ( eOp != SbxNOT ) ) )
+ if ( !bVBAInterop || ( eOp != SbxNOT ) )
goto Lbl_OpIsEmpty;
}
if( Get( aL ) ) switch( eOp )
@@ -1185,7 +1185,7 @@ Lbl_OpIsDouble:
{
if( rOp.GetType() == SbxEMPTY )
{
- if ( !bVBAInterop || ( bVBAInterop && ( eOp != SbxNEG ) ) )
+ if ( !bVBAInterop || ( eOp != SbxNEG ) )
goto Lbl_OpIsEmpty;
}
if( Get( aL ) )