summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-10-10 11:51:22 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-10-10 17:58:31 +0000
commit39022b8b7de60b139a9d21991ae10593e1829e43 (patch)
tree8259c20ef49792b4356934d95ed75108e1e34a0b /desktop
parentc18dc12f292a504b0a6f3d402cbfee77d64a40af (diff)
little String to OUString + documentation
Change-Id: I982e44150fd2909da0571409f16051d79377d7a3 Reviewed-on: https://gerrit.libreoffice.org/6192 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/cmdlinehelp.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/desktop/source/app/cmdlinehelp.cxx b/desktop/source/app/cmdlinehelp.cxx
index 119f9737fd5d..8311c5d494d9 100644
--- a/desktop/source/app/cmdlinehelp.cxx
+++ b/desktop/source/app/cmdlinehelp.cxx
@@ -167,9 +167,7 @@ namespace desktop
#else
// rest gets a dialog box
CmdlineHelpDialog aDlg;
- String head = aHelpMessage_version;
- head.Append(aHelpMessage_head);
- aDlg.m_pftHead->SetText(head);
+ aDlg.m_pftHead->SetText(aHelpMessage_version + aHelpMessage_head);
aDlg.m_pftLeft->SetText(aHelpMessage_left);
aDlg.m_pftRight->SetText(aHelpMessage_right);
aDlg.m_pftBottom->SetText(aHelpMessage_bottom);