Kaydet (Commit) 03086ad0 authored tarafından Jan Holesovsky's avatar Jan Holesovsky

FALSE/TRUE in strings should not be converted to sal_False/sal_True.

üst 50428e32
......@@ -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 )
......
......@@ -210,7 +210,7 @@ const sal_Char sAPI_is_fixed_language[] = "IsFixedLanguage";
const sal_Char sAPI_is_visible[] = "IsVisible";
const sal_Char sAPI_TextRange[] = "TextRange";
const sal_Char sAPI_true[] = "sal_True";
const sal_Char sAPI_true[] = "TRUE";
TYPEINIT1( XMLTextFieldImportContext, SvXMLImportContext);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment