summaryrefslogtreecommitdiff
path: root/idl/source/objects
diff options
context:
space:
mode:
authorMikhail Voytenko <mav@openoffice.org>2010-11-03 16:11:04 +0100
committerMikhail Voytenko <mav@openoffice.org>2010-11-03 16:11:04 +0100
commit2dfa94ec2325fbf2254f68b852bf0ea6a9aa09e5 (patch)
tree70a0bff17694994df2af9097a5f9ba6ef6554875 /idl/source/objects
parenta6fd4156c44ce2f138f638ae9d839dc08e820adb (diff)
removetooltypes01: #i112600# fix typos
Diffstat (limited to 'idl/source/objects')
-rw-r--r--idl/source/objects/bastype.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/source/objects/bastype.cxx b/idl/source/objects/bastype.cxx
index c49000dc4b..c1f528fedf 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;
}
}