Kaydet (Commit) 7ac171a7 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Fix error: call of overloaded 'append(int)' is ambiguous

It is sal_Int32 that we want.

Change-Id: Idbe34ff9c0f39ad73ed7df9185512921294b3b4e
üst 1449f862
......@@ -141,7 +141,7 @@ OUString SC_DLLPUBLIC ScOpCodeSetToNumberString(const std::set<OpCodeEnum>& rOpC
{
if (i != rOpCodes.cbegin())
result.append(';');
result.append(static_cast<int>(*i));
result.append(static_cast<sal_Int32>(*i));
}
return result.toString();
......
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