diff options
author | Gökhan Gurbetoğlu <gokhan.gurbetoglu@pardus.org.tr> | 2016-08-24 17:41:12 +0300 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-08-25 14:54:44 +0000 |
commit | b7bf1ba2136b3d1e031673e7b541c6181e95ff61 (patch) | |
tree | a246e7d5f9cd1ed2e856a09426a924e4c815285e /sfx2 | |
parent | 4d6dc9b84b0afd31a380e71fd53a3bc99d403430 (diff) |
tdf#100726 - Improve readability of OUString concatanations
Improved readability of OUString concatanations. Also removed unused
OUStrings "sColor" and "sEntry" from the code.
Change-Id: Ie9792f499cd880be72229f8a8c71f05ff8e258b6
Reviewed-on: https://gerrit.libreoffice.org/28375
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/templdlg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx index 4096986596e8..8e0d421978b2 100644 --- a/sfx2/source/dialog/templdlg.cxx +++ b/sfx2/source/dialog/templdlg.cxx @@ -1912,8 +1912,8 @@ void SfxCommonTemplateDialog_Impl::DeleteHdl() SvTreeListEntry* pEntry = pTreeBox ? pTreeBox->FirstSelected() : aFmtLb->FirstSelected(); const SfxStyleFamilyItem* pItem = GetFamilyItem_Impl(); - OUString aMsg = SfxResId(STR_DELETE_STYLE_USED).toString(); - aMsg += SfxResId(STR_DELETE_STYLE).toString(); + OUString aMsg = SfxResId(STR_DELETE_STYLE_USED).toString() + + SfxResId(STR_DELETE_STYLE).toString(); while (pEntry) { |