summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2010-11-05 16:40:54 +0100
committerKurt Zenker <kz@openoffice.org>2010-11-05 16:40:54 +0100
commit462993a930b3ce031497b5850be025e991550b6a (patch)
tree996a1fed17e5c23f175a8ef85b62eff3ad417444
parent5a19fa6fb62e6bcf22ef79c6cfbbfed1e59c897f (diff)
parent998b68d0b3a5f7d94decf7ea2aa9473c04178902 (diff)
CWS-TOOLING: integrate CWS jsc331
-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;