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

Eike Rathke erack at redhat.com
Thu Sep 19 16:12:03 PDT 2013


 i18nlangtag/source/languagetag/languagetag.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 57567934d96fb63315f0280eefbb4f66bf0cdd16
Author: Eike Rathke <erack at redhat.com>
Date:   Fri Sep 20 01:11:23 2013 +0200

    inline
    
    Change-Id: I7b031d19160f7fe3d8dd0789ab68b03830135463

diff --git a/i18nlangtag/source/languagetag/languagetag.cxx b/i18nlangtag/source/languagetag/languagetag.cxx
index 164fc21..11cec0c 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -1338,12 +1338,12 @@ void LanguageTag::getIsoLanguageScriptCountry( OUString& rLanguage, OUString& rS
 namespace
 {
 
-bool isLowerAscii( sal_Unicode c )
+inline bool isLowerAscii( sal_Unicode c )
 {
     return 'a' <= c && c <= 'z';
 }
 
-bool isUpperAscii( sal_Unicode c )
+inline bool isUpperAscii( sal_Unicode c )
 {
     return 'A' <= c && c <= 'Z';
 }


More information about the Libreoffice-commits mailing list