summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-10 22:36:53 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-04-11 12:06:23 +0100
commit41e055112ea778c7a45d6cc5f0ce32e44bdb031c (patch)
tree83bca8c70dc94beb5ebaad07f432fa135826bc4b /svl
parentcc84a792f2131d8e5b244f239f5ba71e4ef5d48d (diff)
String::CreateFromInt32->rtl::OUString::valueOf
Diffstat (limited to 'svl')
-rw-r--r--svl/source/items/intitem.cxx2
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;
}