From 03086ad090941f55e699aa37222a71c037968ecd Mon Sep 17 00:00:00 2001 From: Jan Holesovsky Date: Fri, 15 Apr 2011 14:16:37 +0200 Subject: FALSE/TRUE in strings should not be converted to sal_False/sal_True. --- idl/source/objects/slot.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'idl') diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx index 2f4f219c2e6c..8281bce12e61 100644 --- a/idl/source/objects/slot.cxx +++ b/idl/source/objects/slot.cxx @@ -1577,9 +1577,9 @@ void SvMetaSlot::WriteHelpId( SvIdlDataBase & rBase, SvStream & rOutStm, void WriteBool( sal_Bool bSet, SvStream& rStream ) { if ( bSet ) - rStream << "sal_True" << ','; + rStream << "TRUE" << ','; else - rStream << "sal_False" << ','; + rStream << "FALSE" << ','; } void SvMetaSlot::WriteCSV( SvIdlDataBase& rBase, SvStream& rStrm ) -- cgit