summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-12-04 09:06:46 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-12-04 09:13:40 -0500
commite957766a104cb2380d46d7a125ebd0c80eef81d0 (patch)
treecb0408fddb18b5eded026ca2fc68c34617f9c3ec /svl
parentbbb18f679f5a50e9c709520d6c3260d3d9db5aa9 (diff)
Putting this back in to fix Windows build.
Change-Id: I98262000956f10dc3b3da069b6bc286fec314a45
Diffstat (limited to 'svl')
-rw-r--r--svl/source/numbers/zforlist.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/svl/source/numbers/zforlist.cxx b/svl/source/numbers/zforlist.cxx
index cb7af29b357b..b9672a004ec4 100644
--- a/svl/source/numbers/zforlist.cxx
+++ b/svl/source/numbers/zforlist.cxx
@@ -3837,6 +3837,12 @@ NfCurrencyEntry::NfCurrencyEntry(
nPositiveFormat(nPositiveFmt), nNegativeFormat(nNegativeFmt),
nDigits(nDig), cZeroChar(cZero) {}
+NfCurrencyEntry* NfCurrencyEntry::Clone() const
+{
+ return new NfCurrencyEntry(
+ aSymbol, aBankSymbol, eLanguage, nPositiveFormat, nNegativeFormat, nDigits, cZeroChar);
+}
+
bool NfCurrencyEntry::operator==( const NfCurrencyEntry& r ) const
{
return aSymbol == r.aSymbol