summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-11-06 19:51:01 +0100
committerEike Rathke <erack@redhat.com>2014-11-06 21:32:53 +0100
commit872aac32e3ed0bc881b756f37f7bc8d4bbdbd4d8 (patch)
tree66b67e69abe1dc36bc27e108bfb51d159bc77d1d /svl
parent3fe53eee62b676eeb444332aed1019a8c866690b (diff)
remove unnecessary SV_NUMBERFORMATTER_VERSION_FIXED_FRACTION
Change-Id: Ia4779dba9b8068d172d47ce2aff32219634a9616
Diffstat (limited to 'svl')
-rw-r--r--svl/source/numbers/zforlist.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/svl/source/numbers/zforlist.cxx b/svl/source/numbers/zforlist.cxx
index db638ab11857..c5e5e4f2e18f 100644
--- a/svl/source/numbers/zforlist.cxx
+++ b/svl/source/numbers/zforlist.cxx
@@ -2467,15 +2467,13 @@ void SvNumberFormatter::ImpGenerateFormats( sal_uInt32 CLOffset, bool bNoAdditio
// # ?/4
aSingleFormatCode.Code = "# ?/4";
- ImpInsertNewStandardFormat( aSingleFormatCode,
- CLOffset + SetIndexTable( NF_FRACTION_3, ZF_STANDARD_FRACTION+2 ),
- SV_NUMBERFORMATTER_VERSION_FIXED_FRACTION );
+ ImpInsertFormat( aSingleFormatCode,
+ CLOffset + SetIndexTable( NF_FRACTION_3, ZF_STANDARD_FRACTION+2 ));
// # ??/100
aSingleFormatCode.Code = "# ?\?/100";
- ImpInsertNewStandardFormat( aSingleFormatCode,
- CLOffset + SetIndexTable( NF_FRACTION_4, ZF_STANDARD_FRACTION+3 ),
- SV_NUMBERFORMATTER_VERSION_FIXED_FRACTION );
+ ImpInsertFormat( aSingleFormatCode,
+ CLOffset + SetIndexTable( NF_FRACTION_4, ZF_STANDARD_FRACTION+3 ));