Kaydet (Commit) 7fd46404 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Fix MSVC compilation error: can't assign a const char* to String

üst 2a3c3b32
......@@ -2183,7 +2183,7 @@ void WW8FormulaControl::FormulaRead(SwWw8ControlType nWhich,
{
if ( iRes != 25 )
nChecked = iRes;
sDefault = ( wDef == 0 ) ? "0" : "1";
sDefault = ( wDef == 0 ) ? rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("0") ) : rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("1") );
}
}
// xstzTextFormat
......
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