Kaydet (Commit) 914378d2 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

String to OUString

Change-Id: I4ca8254fea9e2ec78cb1d542cc8c0c2cd12e6e89
üst 337066eb
......@@ -910,8 +910,8 @@ void XclExpFormulaCell::WriteContents( XclExpStream& rStrm )
case NUMBERFORMAT_TEXT:
{
String aResult = mrScFmlaCell.GetString();
if( aResult.Len() || (rStrm.GetRoot().GetBiff() <= EXC_BIFF5) )
OUString aResult = mrScFmlaCell.GetString();
if( !aResult.isEmpty() || (rStrm.GetRoot().GetBiff() <= EXC_BIFF5) )
{
rStrm << EXC_FORMULA_RES_STRING;
mxStringRec.reset( new XclExpStringRec( rStrm.GetRoot(), aResult ) );
......
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