Fix MSVC compilation error: can't assign a const char* to String
This commit is contained in:
parent
2a3c3b32ca
commit
7fd4640469
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue