summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/tpoption.cxx
diff options
context:
space:
mode:
authorJean-Noël Rouvignac <jn.rouvignac@gmail.com>2013-01-09 10:53:05 +0100
committerMiklos Vajna <vmiklos@suse.cz>2013-01-09 10:54:19 +0100
commita2296128ccc1c678f0a8a591c36b5546683f482d (patch)
treee5286fc9dc5c9e1e061c7581a0090c2a8ee6e34b /sd/source/ui/dlg/tpoption.cxx
parent2f320afd978f15a8197f11614251b1e7014487c9 (diff)
Some removal/replacement of the String/UniString with OUString
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 );
}