summaryrefslogtreecommitdiffstats
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-02-26 20:45:18 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-02-27 09:45:57 +0000
commitb36d555440b86d8293b188e4d99ec8682a2139a5 (patch)
tree85fba385e1c021c3b2d86bc8922c5980b4abe9ff /sd
parentcallcatcher: update list (diff)
downloadcore-b36d555440b86d8293b188e4d99ec8682a2139a5.tar.gz
core-b36d555440b86d8293b188e4d99ec8682a2139a5.zip
drop UniString::CreateFromInt64
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/dlg/copydlg.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/dlg/copydlg.cxx b/sd/source/ui/dlg/copydlg.cxx
index 63708e81777b..45ae8d003498 100644
--- a/sd/source/ui/dlg/copydlg.cxx
+++ b/sd/source/ui/dlg/copydlg.cxx
@@ -133,22 +133,22 @@ CopyDlg::~CopyDlg()
{
String& rStr = GetExtraData();
- rStr = UniString::CreateFromInt64( maNumFldCopies.GetValue() );
+ rStr = rtl::OUString::valueOf(static_cast<sal_Int64>(maNumFldCopies.GetValue()));
rStr.Append( TOKEN );
- rStr += UniString::CreateFromInt64( maMtrFldMoveX.GetValue() );
+ rStr += rtl::OUString::valueOf(static_cast<sal_Int64>(maMtrFldMoveX.GetValue()));
rStr.Append( TOKEN );
- rStr += UniString::CreateFromInt64( maMtrFldMoveY.GetValue() );
+ rStr += rtl::OUString::valueOf(static_cast<sal_Int64>(maMtrFldMoveY.GetValue()));
rStr.Append( TOKEN );
- rStr += UniString::CreateFromInt64( maMtrFldAngle.GetValue() );
+ rStr += rtl::OUString::valueOf(static_cast<sal_Int64>(maMtrFldAngle.GetValue()));
rStr.Append( TOKEN );
- rStr += UniString::CreateFromInt64( maMtrFldWidth.GetValue() );
+ rStr += rtl::OUString::valueOf(static_cast<sal_Int64>(maMtrFldWidth.GetValue()));
rStr.Append( TOKEN );
- rStr += UniString::CreateFromInt64( maMtrFldHeight.GetValue() );
+ rStr += rtl::OUString::valueOf(static_cast<sal_Int64>(maMtrFldHeight.GetValue()));
rStr.Append( TOKEN );
rStr += UniString::CreateFromInt32( (long)maLbStartColor.GetSelectEntryColor().GetColor() );