diff options
author | Jean-Noël Rouvignac <jn.rouvignac@gmail.com> | 2013-01-09 10:53:05 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-01-09 10:54:19 +0100 |
commit | a2296128ccc1c678f0a8a591c36b5546683f482d (patch) | |
tree | e5286fc9dc5c9e1e061c7581a0090c2a8ee6e34b /svl/source/items/ptitem.cxx | |
parent | 2f320afd978f15a8197f11614251b1e7014487c9 (diff) |
Some removal/replacement of the String/UniString with OUString
Diffstat (limited to 'svl/source/items/ptitem.cxx')
-rw-r--r-- | svl/source/items/ptitem.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/ptitem.cxx b/svl/source/items/ptitem.cxx index 5986bafe3b1a..b70c84345cae 100644 --- a/svl/source/items/ptitem.cxx +++ b/svl/source/items/ptitem.cxx @@ -75,9 +75,9 @@ SfxItemPresentation SfxPointItem::GetPresentation ) const { DBG_CHKTHIS(SfxPointItem, 0); - rText = UniString::CreateFromInt32(aVal.X()); + rText = OUString::valueOf(aVal.X()); rText.AppendAscii(RTL_CONSTASCII_STRINGPARAM(", ")); - rText += UniString::CreateFromInt32(aVal.Y()); + rText += OUString::valueOf(aVal.Y()); rText.AppendAscii(RTL_CONSTASCII_STRINGPARAM(", ")); return SFX_ITEM_PRESENTATION_NAMELESS; } |