diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-04-20 15:29:22 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-04-27 14:00:40 +0200 |
commit | fa772f7fdb4c3ec40b63d5221ca9778be6abdcb6 (patch) | |
tree | fcd4ccef13b23c57c3a4d984a7fdfbfd83e71684 /sw | |
parent | 4bcf2dee1e669851b9d6dbbbd4eaede31ea8b307 (diff) |
Minor OUString optimization
Change-Id: Ibfb35ec615e1b59dafc0a3947c754208c0273c9d
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/chrdlg/pardlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/chrdlg/pardlg.cxx b/sw/source/ui/chrdlg/pardlg.cxx index ad27a71ec134..091248eefda2 100644 --- a/sw/source/ui/chrdlg/pardlg.cxx +++ b/sw/source/ui/chrdlg/pardlg.cxx @@ -71,7 +71,7 @@ SwParaDlg::SwParaDlg(Window *pParent, if(pTitle) { // Update title - SetText(GetText() + SW_RESSTR(STR_TEXTCOLL_HEADER) + *pTitle + OUString(')')); + SetText(GetText() + SW_RESSTR(STR_TEXTCOLL_HEADER) + *pTitle + ")"); } // tabs common to paragraph and draw paragraphs (paragraphs inside a text box) SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create(); |