summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-04-03 20:57:54 +0200
committerMichael Stahl <mstahl@redhat.com>2014-04-03 14:14:43 -0500
commit7e6a5ff988ebfc3e6753b19cfa172d758f5b51c8 (patch)
tree9ccbc326e2a6e90ce1522b80ef74f30d73af0fb2
parent9b3ff437132b77de62f25b83e65be67100c610ca (diff)
fixed display of available dictionaries strings
Since commit 9dc57be59d1a8dc17e77f21cbce04e2bb7247dca under Tools->Options->LanguageSettings->WritingAids "User-defined dictionaries" the language strings are displayed as " '[' Language (Country) ']'" that before was and instead should be "[Language (Country)]" Change-Id: Id7e7ef6ab86112c46707f1451a072dfc196aec44 (cherry picked from commit cc658066aec0a0f9589e7f9522c4431b3a3d5e96) Reviewed-on: https://gerrit.libreoffice.org/8829 Tested-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r--svx/source/dialog/langbox.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx
index 3b3eca6e8f65..33bc8453e5cd 100644
--- a/svx/source/dialog/langbox.cxx
+++ b/svx/source/dialog/langbox.cxx
@@ -58,9 +58,9 @@ OUString GetDicInfoStr( const OUString& rName, const sal_uInt16 nLang, bool bNeg
aTmp += SVX_RESSTR(RID_SVXSTR_LANGUAGE_ALL);
else
{
- aTmp += " '[' ";
+ aTmp += "[";
aTmp += SvtLanguageTable::GetLanguageString( (LanguageType)nLang );
- aTmp += " ']' ";
+ aTmp += "]";
}
return aTmp;