From 06e2005ed83567452783003e3113ad6a92190c2d Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 17 Jun 2012 21:01:05 +0100 Subject: convert LocaleDataWrapper to OUString Change-Id: Icb5f5adf9139d1c0f0e86d8128ea6742ce20b138 --- sc/source/ui/cctrl/editfield.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sc/source/ui/cctrl') 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 -- cgit