summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/tpoption.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/dlg/tpoption.cxx')
-rw-r--r--sd/source/ui/dlg/tpoption.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/dlg/tpoption.cxx b/sd/source/ui/dlg/tpoption.cxx
index ecb7d9efa5e6..77960f056cc0 100644
--- a/sd/source/ui/dlg/tpoption.cxx
+++ b/sd/source/ui/dlg/tpoption.cxx
@@ -679,9 +679,9 @@ void SdTpOptionsMisc::SetDrawMode()
String SdTpOptionsMisc::GetScale( sal_Int32 nX, sal_Int32 nY )
{
- String aScale( UniString::CreateFromInt32( nX ) );
+ String aScale( OUString::valueOf( nX ) );
aScale.Append( TOKEN );
- aScale.Append( UniString::CreateFromInt32( nY ) );
+ aScale.Append( OUString::valueOf( nY ) );
return( aScale );
}