[Libreoffice-commits] core.git: sc/source
Tor Lillqvist
tml at collabora.com
Thu Nov 6 02:20:03 PST 2014
sc/source/core/tool/calcconfig.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 7ac171a7d7e3498dca078fd669ef87c742d0274d
Author: Tor Lillqvist <tml at collabora.com>
Date: Thu Nov 6 12:19:03 2014 +0200
Fix error: call of overloaded 'append(int)' is ambiguous
It is sal_Int32 that we want.
Change-Id: Idbe34ff9c0f39ad73ed7df9185512921294b3b4e
diff --git a/sc/source/core/tool/calcconfig.cxx b/sc/source/core/tool/calcconfig.cxx
index 47499d0..f6d2e46 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<OpCodeEnum>& rOpC
{
if (i != rOpCodes.cbegin())
result.append(';');
- result.append(static_cast<int>(*i));
+ result.append(static_cast<sal_Int32>(*i));
}
return result.toString();
More information about the Libreoffice-commits
mailing list