From 009851223b5ced4ed2662af2e2ae81c0f9200e45 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Fri, 5 Jul 2013 16:25:03 -0500 Subject: module svl: all String and some bool and related clean-up Change-Id: I36eb559fa58dbe75384b7119c788af0048813aed Reviewed-on: https://gerrit.libreoffice.org/4733 Reviewed-by: Norbert Thiebaud Tested-by: Norbert Thiebaud --- uui/source/iahndl-ssl.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'uui') diff --git a/uui/source/iahndl-ssl.cxx b/uui/source/iahndl-ssl.cxx index 922d587d62f8..c75b82202779 100644 --- a/uui/source/iahndl-ssl.cxx +++ b/uui/source/iahndl-ssl.cxx @@ -115,14 +115,13 @@ getLocalizedDatTimeStr( LanguageType eUILang = Application::GetSettings().GetUILanguageTag().getLanguageType(); SvNumberFormatter *pNumberFormatter = new SvNumberFormatter( xContext, eUILang ); - String aTmpStr; + OUString aTmpStr; Color* pColor = NULL; Date* pNullDate = pNumberFormatter->GetNullDate(); sal_uInt32 nFormat = pNumberFormatter->GetStandardFormat( NUMBERFORMAT_DATE, eUILang ); - pNumberFormatter->GetOutputString( - aDate - *pNullDate, nFormat, aTmpStr, &pColor ); + pNumberFormatter->GetOutputString( aDate - *pNullDate, nFormat, aTmpStr, &pColor ); aDateTimeStr = aTmpStr + OUString(" "); nFormat = pNumberFormatter->GetStandardFormat( NUMBERFORMAT_TIME, eUILang ); -- cgit