summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-27 16:44:41 +0200
committerNoel Grandin <noel@peralex.com>2013-08-29 09:30:11 +0200
commit25994daa3a186a504c4f1b88bc251a89b96f0d47 (patch)
tree94777dcf63f5e88485112a3b6271a20343fd74d2 /sd/source/ui/dlg
parentfc8f0f12805522504642a68af76b495d588883e4 (diff)
convert include/sfx2/childwin.hxx from String to OUString
Change-Id: Ide6e1751879c9702299df37c8f14ebed22d31a34
Diffstat (limited to 'sd/source/ui/dlg')
-rw-r--r--sd/source/ui/dlg/copydlg.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sd/source/ui/dlg/copydlg.cxx b/sd/source/ui/dlg/copydlg.cxx
index 14c64aa8e60b..40145feaf3d3 100644
--- a/sd/source/ui/dlg/copydlg.cxx
+++ b/sd/source/ui/dlg/copydlg.cxx
@@ -87,28 +87,28 @@ CopyDlg::CopyDlg(::Window* pWindow, const SfxItemSet& rInAttrs,
CopyDlg::~CopyDlg()
{
- String& rStr = GetExtraData();
+ OUString& rStr = GetExtraData();
rStr = OUString::number(m_pNumFldCopies->GetValue());
- rStr.Append( TOKEN );
+ rStr += OUString(TOKEN);
rStr += OUString::number(m_pMtrFldMoveX->GetValue());
- rStr.Append( TOKEN );
+ rStr += OUString( TOKEN );
rStr += OUString::number(m_pMtrFldMoveY->GetValue());
- rStr.Append( TOKEN );
+ rStr += OUString( TOKEN );
rStr += OUString::number(m_pMtrFldAngle->GetValue());
- rStr.Append( TOKEN );
+ rStr += OUString( TOKEN );
rStr += OUString::number(m_pMtrFldWidth->GetValue());
- rStr.Append( TOKEN );
+ rStr += OUString( TOKEN );
rStr += OUString::number(m_pMtrFldHeight->GetValue());
- rStr.Append( TOKEN );
+ rStr += OUString( TOKEN );
rStr += OUString::number( m_pLbStartColor->GetSelectEntryColor().GetColor() );
- rStr.Append( TOKEN );
+ rStr += OUString( TOKEN );
rStr += OUString::number( m_pLbEndColor->GetSelectEntryColor().GetColor() );
}