summaryrefslogtreecommitdiff
path: root/svtools/source/control
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2000-11-14 07:47:26 +0000
committerFrank Schönheit <fs@openoffice.org>2000-11-14 07:47:26 +0000
commitc5cfedae5fa817e941300859ecff71ee4b5f9105 (patch)
treede1ffb1b5c8c5f329db721248b5cee9c27df4086 /svtools/source/control
parente5091caeed072af7ed93fdc3b3e221bd4a119606 (diff)
typo
Diffstat (limited to 'svtools/source/control')
-rw-r--r--svtools/source/control/fmtfield.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/control/fmtfield.cxx b/svtools/source/control/fmtfield.cxx
index 04bd6f49520e..6f9ebb75cb62 100644
--- a/svtools/source/control/fmtfield.cxx
+++ b/svtools/source/control/fmtfield.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fmtfield.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: fs $ $Date: 2000-11-09 15:15:19 $
+ * last change: $Author: fs $ $Date: 2000-11-14 08:47:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -866,13 +866,13 @@ void DoubleNumericField::ResetConformanceTester()
ConvertLanguageToIsoNames( pFormatEntry->GetLanguage(), aLanguage, aCountry );
LocaleDataWrapper aLocaleInfo(::comphelper::getProcessServiceFactory(), Locale( aLanguage, aCountry, aVariant ));
- String sSeparator = aLocaleInfo.GetNumThousandSep();
+ String sSeparator = aLocaleInfo.getNumThousandSep();
if (sSeparator.Len())
cSeparatorThousand = sSeparator.GetBuffer()[0];
// TODO: for real unicode we need the possibility to search for regular expressions allowing something like "\x????"
// (4 digits instead of 2)
- sSeparator = aLocaleInfo.GetNumDecimalSep();
+ sSeparator = aLocaleInfo.getNumDecimalSep();
if (sSeparator.Len())
cSeparatorDecimal = sSeparator.GetBuffer()[0];
}