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

Remove ambiguity.

üst 7a6d9e1a
...@@ -673,9 +673,9 @@ rtl::OUString XclTools::GetCondFormatStyleName( SCTAB nScTab, sal_Int32 nFormat, ...@@ -673,9 +673,9 @@ rtl::OUString XclTools::GetCondFormatStyleName( SCTAB nScTab, sal_Int32 nFormat,
{ {
rtl::OUStringBuffer aBuf(maCFStyleNamePrefix1); rtl::OUStringBuffer aBuf(maCFStyleNamePrefix1);
aBuf.append(static_cast<sal_Int32>(nScTab+1)); aBuf.append(static_cast<sal_Int32>(nScTab+1));
aBuf.append('_'); aBuf.append(sal_Unicode('_'));
aBuf.append(static_cast<sal_Int32>(nFormat+1)); aBuf.append(static_cast<sal_Int32>(nFormat+1));
aBuf.append('_'); aBuf.append(sal_Unicode('_'));
aBuf.append(static_cast<sal_Int32>(nCondition+1)); aBuf.append(static_cast<sal_Int32>(nCondition+1));
return aBuf.makeStringAndClear(); return aBuf.makeStringAndClear();
} }
......
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