[Libreoffice-commits] core.git: svx/source

Eike Rathke erack at redhat.com
Thu Apr 3 12:04:50 PDT 2014


 svx/source/dialog/langbox.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit cc658066aec0a0f9589e7f9522c4431b3a3d5e96
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

diff --git a/svx/source/dialog/langbox.cxx b/svx/source/dialog/langbox.cxx
index 8ca4172..4e206af 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