Kaydet (Commit) 93effcb0 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

bool to sal_Bool for rtl::OUStringBuffer::append

Change-Id: I4132cbb37438a11ed4e2558d28cd3e397a87d1ce
üst be04b07c
...@@ -908,7 +908,7 @@ void ScDataBarFormat::dumpInfo(rtl::OUStringBuffer& rBuf) const ...@@ -908,7 +908,7 @@ void ScDataBarFormat::dumpInfo(rtl::OUStringBuffer& rBuf) const
{ {
boost::scoped_ptr<ScDataBarInfo> pInfo( GetDataBarInfo(ScAddress(nCol, nRow, nTab)) ); boost::scoped_ptr<ScDataBarInfo> pInfo( GetDataBarInfo(ScAddress(nCol, nRow, nTab)) );
rBuf.append((sal_Int32) nCol).append(",").append(nRow).append(",").append((sal_Int32) nTab).append(",").append(pInfo->mnZero).append(","); rBuf.append((sal_Int32) nCol).append(",").append(nRow).append(",").append((sal_Int32) nTab).append(",").append(pInfo->mnZero).append(",");
rBuf.append(pInfo->mnLength).append(",").append(pInfo->mbGradient).append(",").append(pInfo->mbShowValue).append("\n"); rBuf.append(pInfo->mnLength).append(",").append((sal_Bool)pInfo->mbGradient).append(",").append((sal_Bool)pInfo->mbShowValue).append("\n");
} }
} }
} }
......
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