diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-10 22:36:53 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-11 12:06:23 +0100 |
commit | 41e055112ea778c7a45d6cc5f0ce32e44bdb031c (patch) | |
tree | 83bca8c70dc94beb5ebaad07f432fa135826bc4b /svl/source/items | |
parent | cc84a792f2131d8e5b244f239f5ba71e4ef5d48d (diff) |
String::CreateFromInt32->rtl::OUString::valueOf
Diffstat (limited to 'svl/source/items')
-rw-r--r-- | svl/source/items/intitem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/intitem.cxx b/svl/source/items/intitem.cxx index 9fea48419f3a..abe1586c17db 100644 --- a/svl/source/items/intitem.cxx +++ b/svl/source/items/intitem.cxx @@ -103,7 +103,7 @@ SfxItemPresentation SfxInt16Item::GetPresentation(SfxItemPresentation, const IntlWrapper *) const { DBG_CHKTHIS(SfxInt16Item, 0); - rText = UniString::CreateFromInt32(m_nValue); + rText = rtl::OUString::valueOf(static_cast<sal_Int32>(m_nValue)); return SFX_ITEM_PRESENTATION_NAMELESS; } |