summaryrefslogtreecommitdiff
path: root/patches/vba/vba-variant-fix.diff
diff options
context:
space:
mode:
Diffstat (limited to 'patches/vba/vba-variant-fix.diff')
-rw-r--r--patches/vba/vba-variant-fix.diff13
1 files changed, 0 insertions, 13 deletions
diff --git a/patches/vba/vba-variant-fix.diff b/patches/vba/vba-variant-fix.diff
deleted file mode 100644
index efa977950..000000000
--- a/patches/vba/vba-variant-fix.diff
+++ /dev/null
@@ -1,13 +0,0 @@
---- basic/source/sbx/sbxvalue.cxx.orig 2008-09-17 14:56:02.000000000 +0800
-+++ basic/source/sbx/sbxvalue.cxx 2008-09-17 15:11:36.000000000 +0800
-@@ -1147,8 +1147,8 @@ BOOL SbxValue::Compute( SbxOperator eOp,
- {
- SbxValues aL, aR;
- bool bDecimal = false;
-- if( bVBAInterop && ( ( eThisType == SbxSTRING && eOpType != SbxSTRING ) ||
-- ( eThisType != SbxSTRING && eOpType == SbxSTRING ) ) &&
-+ if( bVBAInterop && ( ( eThisType == SbxSTRING && eOpType != SbxSTRING && eOpType != SbxEMPTY ) ||
-+ ( eThisType != SbxSTRING && eThisType != SbxEMPTY && eOpType == SbxSTRING ) ) &&
- ( eOp == SbxMUL || eOp == SbxDIV || eOp == SbxPLUS || eOp == SbxMINUS ) )
- {
- goto Lbl_OpIsDouble;