summaryrefslogtreecommitdiff
path: root/idl
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2011-04-15 14:16:37 +0200
committerJan Holesovsky <kendy@suse.cz>2011-04-15 14:16:37 +0200
commit03086ad090941f55e699aa37222a71c037968ecd (patch)
tree6afd6089fdc856ddafbb585597d35620f72ae0c0 /idl
parent50428e32e6ca188dafbcfde5f91338a88313508c (diff)
FALSE/TRUE in strings should not be converted to sal_False/sal_True.
Diffstat (limited to 'idl')
-rw-r--r--idl/source/objects/slot.cxx4
1 files changed, 2 insertions, 2 deletions
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 )