[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - svx/source
Eike Rathke
erack at redhat.com
Thu Apr 3 12:15:20 PDT 2014
svx/source/dialog/langbox.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 7e6a5ff988ebfc3e6753b19cfa172d758f5b51c8
Author: Eike Rathke <erack at redhat.com>
Date: Thu Apr 3 20:57:54 2014 +0200
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 at redhat.com>
Reviewed-by: Michael Stahl <mstahl at redhat.com>
diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx
index 3b3eca6..33bc845 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;
More information about the Libreoffice-commits
mailing list