summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-04-03 20:57:54 +0200
committerEike Rathke <erack@redhat.com>2014-04-03 21:04:19 +0200
commitcc658066aec0a0f9589e7f9522c4431b3a3d5e96 (patch)
tree43ecbb73744e6a6d04572b047cb176f6c922bdcc /svx
parent0695236cd7347134e53c81cf15f38b61ffe13255 (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
Diffstat (limited to 'svx')
-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 8ca41722d27c..4e206af19ad3 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;