diff options
author | Mikhail Voytenko <mav@openoffice.org> | 2010-11-03 16:11:04 +0100 |
---|---|---|
committer | Mikhail Voytenko <mav@openoffice.org> | 2010-11-03 16:11:04 +0100 |
commit | 1997e52744a405eb43b23acf794e6b11afbc261b (patch) | |
tree | e02ec3851278368cc52716f756f76d0704095d39 /idl/source/objects | |
parent | 01b3628d420ed30b5c61376f4f5fcb491a5aa0a1 (diff) |
removetooltypes01: #i112600# fix typos
Diffstat (limited to 'idl/source/objects')
-rw-r--r-- | idl/source/objects/bastype.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/source/objects/bastype.cxx b/idl/source/objects/bastype.cxx index 1d274a2563a3..a4851652f0dd 100644 --- a/idl/source/objects/bastype.cxx +++ b/idl/source/objects/bastype.cxx @@ -226,7 +226,7 @@ sal_Bool SvBOOL::WriteSvIdl( SvStringHashEntry * pName, SvStream & rOutStm ) if( nVal ) rOutStm << pName->GetName().GetBuffer(); else - rOutStm << pName->GetName().GetBuffer() << "(sal_False)"; + rOutStm << pName->GetName().GetBuffer() << "(FALSE)"; return sal_True; } @@ -244,7 +244,7 @@ ByteString SvBOOL::GetSvIdlString( SvStringHashEntry * pName ) else { ByteString aTmp( pName->GetName() ); - aTmp += "(sal_False)"; + aTmp += "(FALSE)"; return aTmp; } } |