From 5688b51bcb23b12b335dadf4430b7b7c4407cbfb Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 4 Apr 2012 21:30:30 +0100 Subject: UniString::CreateFromInt32 -> rtl::OUString::valueOf --- svtools/workben/svdem.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svtools/workben/svdem.cxx') diff --git a/svtools/workben/svdem.cxx b/svtools/workben/svdem.cxx index be6ce3d6d382..c18e749b21f1 100644 --- a/svtools/workben/svdem.cxx +++ b/svtools/workben/svdem.cxx @@ -308,7 +308,7 @@ void ShowFont::Paint( const Rectangle& ) if ( rFont.GetOrientation() ) { - aText.Append( String::CreateFromInt32( rFont.GetOrientation()/10 ) ); + aText.Append( rtl::OUString::valueOf(static_cast(rFont.GetOrientation()/10)) ); aText.AppendAscii( " degree." ); x = aWindowSize.Width()/2; -- cgit