Kaydet (Commit) 086c52d2 authored tarafından Laurent Balland-Poirier's avatar Laurent Balland-Poirier Kaydeden (comit) Caolán McNamara

String to OUString in viewfunc (Calc)

Conflicts:
	sc/source/ui/view/viewfunc.cxx

Change-Id: If82a7c6e58af1cbba3748e42bf8ecce75cbebf18
Reviewed-on: https://gerrit.libreoffice.org/6202Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst 646ce81d
......@@ -650,9 +650,9 @@ void ScViewFunc::EnterData( SCCOL nCol, SCROW nRow, SCTAB nTab,
if ( !bSimple && aEngine.GetParagraphCount() == 1 )
{
OUString aParStr = aEngine.GetText( 0 );
OUString aParStr(aEngine.GetText( 0 ));
if ( aParStr[0] == '=' )
bSimple = sal_True;
bSimple = true;
}
if (bCommon) // attribute for tab
......
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