From 1edb495a45fde1d788b409fd1a9a839bd370c426 Mon Sep 17 00:00:00 2001 From: Ivan Timofeev Date: Thu, 15 Aug 2013 16:56:09 +0400 Subject: convert GetName/Title/Description methods to OUString Change-Id: Id16a2b29b1d6cf02b94cc6c423e2475a9cbeb8a3 --- sd/source/ui/func/fulinend.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sd/source/ui/func') diff --git a/sd/source/ui/func/fulinend.cxx b/sd/source/ui/func/fulinend.cxx index 531ecda3225f..ae0520f47fa8 100644 --- a/sd/source/ui/func/fulinend.cxx +++ b/sd/source/ui/func/fulinend.cxx @@ -94,7 +94,7 @@ void FuLineEnd::DoExecute( SfxRequest& ) String aNewName( SdResId( STR_LINEEND ) ); String aDesc( SdResId( STR_DESC_LINEEND ) ); - String aName; + OUString aName; long nCount = pLineEndList->Count(); long j = 1; @@ -103,8 +103,8 @@ void FuLineEnd::DoExecute( SfxRequest& ) while( !bDifferent ) { aName = aNewName; - aName.Append( sal_Unicode(' ') ); - aName.Append( OUString::valueOf( j++ ) ); + aName += " "; + aName += OUString::number(j++); bDifferent = sal_True; for( long i = 0; i < nCount && bDifferent; i++ ) { -- cgit