From cf1dc8208dfbd1f30ae3547ea944b7e5fe570965 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 6 Nov 2014 12:19:03 +0200 Subject: Fix error: call of overloaded 'append(int)' is ambiguous It is sal_Int32 that we want. Change-Id: Idbe34ff9c0f39ad73ed7df9185512921294b3b4e --- sc/source/core/tool/calcconfig.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc/source/core/tool/calcconfig.cxx b/sc/source/core/tool/calcconfig.cxx index 47499d012c32..f6d2e4687d40 100644 --- a/sc/source/core/tool/calcconfig.cxx +++ b/sc/source/core/tool/calcconfig.cxx @@ -141,7 +141,7 @@ OUString SC_DLLPUBLIC ScOpCodeSetToNumberString(const std::set& rOpC { if (i != rOpCodes.cbegin()) result.append(';'); - result.append(static_cast(*i)); + result.append(static_cast(*i)); } return result.toString(); -- cgit