summaryrefslogtreecommitdiff
path: root/sw/source/ui/table
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-14 09:54:50 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-14 11:54:59 +0100
commit7e7a487e904143cbc282a2b90c4cb3918bfa151f (patch)
treea3091c70d009ea75dd54c35540759aaec748fa91 /sw/source/ui/table
parentbe1ce88b8e5e06947e93146a052b0ba2c64dc479 (diff)
Related: fdo#38838 remove UniString::AppendAscii
Change-Id: I0f929843d73eb445c8b1aa56d59cbbce844b9008
Diffstat (limited to 'sw/source/ui/table')
-rw-r--r--sw/source/ui/table/tautofmt.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/table/tautofmt.cxx b/sw/source/ui/table/tautofmt.cxx
index de31736cc40b..0120e01d1f02 100644
--- a/sw/source/ui/table/tautofmt.cxx
+++ b/sw/source/ui/table/tautofmt.cxx
@@ -346,10 +346,10 @@ IMPL_LINK_NOARG(SwAutoFormatDlg, AddHdl)
IMPL_LINK_NOARG(SwAutoFormatDlg, RemoveHdl)
{
- String aMessage = aStrDelMsg ;
- aMessage.AppendAscii("\n\n");
+ OUString aMessage = aStrDelMsg ;
+ aMessage += "\n\n";
aMessage += m_pLbFormat->GetSelectEntry() ;
- aMessage += '\n';
+ aMessage += "\n";
MessBox* pBox = new MessBox( this, WinBits( WB_OK_CANCEL ),
aStrDelTitle, aMessage);