diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-06-17 21:01:05 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-06-18 15:13:51 +0100 |
commit | 06e2005ed83567452783003e3113ad6a92190c2d (patch) | |
tree | bb3a92154bb0bbaeda1e6d548f467229206dd49d /sc/source/ui/cctrl | |
parent | 8e01e881451333eadb8e23f619e2b4014de1442a (diff) |
convert LocaleDataWrapper to OUString
Change-Id: Icb5f5adf9139d1c0f0e86d8128ea6742ce20b138
Diffstat (limited to 'sc/source/ui/cctrl')
-rw-r--r-- | sc/source/ui/cctrl/editfield.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/cctrl/editfield.cxx b/sc/source/ui/cctrl/editfield.cxx index 51147e5cd2cb..3ee77c71edec 100644 --- a/sc/source/ui/cctrl/editfield.cxx +++ b/sc/source/ui/cctrl/editfield.cxx @@ -42,12 +42,12 @@ namespace { sal_Unicode lclGetDecSep() { - return ScGlobal::GetpLocaleData()->getNumDecimalSep().GetChar( 0 ); + return ScGlobal::GetpLocaleData()->getNumDecimalSep()[0]; } sal_Unicode lclGetGroupSep() { - return ScGlobal::GetpLocaleData()->getNumThousandSep().GetChar( 0 ); + return ScGlobal::GetpLocaleData()->getNumThousandSep()[0]; } } // namespace |