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
commitb6ca2bf057b394e06620ea4d1b54b2b154b5d2e5 (patch)
tree6bcb8bff2bf243b29d8a6a9fefb31a895ce9279f
parent49dc64ee28dfc4622787feb38ef7fa2381fccfa8 (diff)
parent33f4cc0f7d0807937a51b0475db5466216d65473 (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 7551a586b3..8abfbeabab 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;