summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorVladimir Glazunov <vg@openoffice.org>2010-11-09 14:49:47 +0100
committerVladimir Glazunov <vg@openoffice.org>2010-11-09 14:49:47 +0100
commit890f3d963e85b743a33f91e13a164b399ea77340 (patch)
tree3fbedf23ee806826f4f09e0bb9aa0e26d9ca9ada /basic
parent213acedb8e2bcbd298eaa78ce52f5774119196f1 (diff)
parentf1605afa372d53186bebf7b517d6e68487199cfa (diff)
#i10000# changes from OOO330 m14
Diffstat (limited to 'basic')
-rw-r--r--basic/source/sbx/sbxbool.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxbool.cxx b/basic/source/sbx/sbxbool.cxx
index 3216e401b707..c3ed0d09b134 100644
--- a/basic/source/sbx/sbxbool.cxx
+++ b/basic/source/sbx/sbxbool.cxx
@@ -91,7 +91,7 @@ enum SbxBOOL ImpGetBool( const SbxValues* p )
{
if( p->pOUString->equalsIgnoreAsciiCase( SbxRes( STRING_TRUE ) ) )
nRes = SbxTRUE;
- else if( p->pOUString->equalsIgnoreAsciiCase( SbxRes( STRING_FALSE ) ) )
+ else if( !p->pOUString->equalsIgnoreAsciiCase( SbxRes( STRING_FALSE ) ) )
{
// Jetzt kann es noch in eine Zahl konvertierbar sein
BOOL bError = TRUE;