Kaydet (Commit) 0919979b authored tarafından Kohei Yoshida's avatar Kohei Yoshida

fdo#75962: Avoid unwanted number detection when placing page field name.

Change-Id: I1a3c57ec029e03198b8f190acfa8d59e142acaba
üst bd378b63
...@@ -1003,7 +1003,9 @@ void ScDPOutput::Output() ...@@ -1003,7 +1003,9 @@ void ScDPOutput::Output()
else if (n > 1) else if (n > 1)
aPageValue = ScResId(SCSTR_MULTIPLE).toString(); aPageValue = ScResId(SCSTR_MULTIPLE).toString();
pDoc->SetString( nFldCol, nHdrRow, nTab, aPageValue ); ScSetStringParam aParam;
aParam.setTextInput();
pDoc->SetString(nFldCol, nHdrRow, nTab, aPageValue, &aParam);
lcl_SetFrame( pDoc,nTab, nFldCol,nHdrRow, nFldCol,nHdrRow, 20 ); lcl_SetFrame( pDoc,nTab, nFldCol,nHdrRow, nFldCol,nHdrRow, 20 );
} }
......
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