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

Miklos Vajna vmiklos at collabora.co.uk
Thu Apr 28 19:26:27 UTC 2016


 i18npool/source/localedata/localedata.cxx |   38 +++++++++++++++---------------
 1 file changed, 19 insertions(+), 19 deletions(-)

New commits:
commit 1d4974ba066174fb1e000d5e0a2c41a4f7feaf18
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Thu Apr 28 21:25:39 2016 +0200

    i18npool: fix Android build
    
    Change-Id: If7321acf4cb8542709cd3f2b418af97586862d46

diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx
index bfb59aa..06da7af 100644
--- a/i18npool/source/localedata/localedata.cxx
+++ b/i18npool/source/localedata/localedata.cxx
@@ -543,43 +543,43 @@ oslGenericFunction SAL_CALL lcl_LookupTableHelper::getFunctionSymbolByName(
             (void) pOutCachedItem;
 
             if( strcmp(pFunction, "getAllCalendars") == 0 )
-                return aLibTable[i].getAllCalendars;
+                return i.getAllCalendars;
             else if( strcmp(pFunction, "getAllCurrencies") == 0 )
-                return aLibTable[i].getAllCurrencies;
+                return i.getAllCurrencies;
             else if( strcmp(pFunction, "getAllFormats0") == 0 )
-                return aLibTable[i].getAllFormats0;
+                return i.getAllFormats0;
             else if( strcmp(pFunction, "getBreakIteratorRules") == 0 )
-                return aLibTable[i].getBreakIteratorRules;
+                return i.getBreakIteratorRules;
             else if( strcmp(pFunction, "getCollationOptions") == 0 )
-                return aLibTable[i].getCollationOptions;
+                return i.getCollationOptions;
             else if( strcmp(pFunction, "getCollatorImplementation") == 0 )
-                return aLibTable[i].getCollatorImplementation;
+                return i.getCollatorImplementation;
             else if( strcmp(pFunction, "getContinuousNumberingLevels") == 0 )
-                return aLibTable[i].getContinuousNumberingLevels;
+                return i.getContinuousNumberingLevels;
             else if( strcmp(pFunction, "getDateAcceptancePatterns") == 0 )
-                return aLibTable[i].getDateAcceptancePatterns;
+                return i.getDateAcceptancePatterns;
             else if( strcmp(pFunction, "getFollowPageWords") == 0 )
-                return aLibTable[i].getFollowPageWords;
+                return i.getFollowPageWords;
             else if( strcmp(pFunction, "getForbiddenCharacters") == 0 )
-                return aLibTable[i].getForbiddenCharacters;
+                return i.getForbiddenCharacters;
             else if( strcmp(pFunction, "getIndexAlgorithm") == 0 )
-                return aLibTable[i].getIndexAlgorithm;
+                return i.getIndexAlgorithm;
             else if( strcmp(pFunction, "getLCInfo") == 0 )
-                return aLibTable[i].getLCInfo;
+                return i.getLCInfo;
             else if( strcmp(pFunction, "getLocaleItem") == 0 )
-                return aLibTable[i].getLocaleItem;
+                return i.getLocaleItem;
             else if( strcmp(pFunction, "getOutlineNumberingLevels") == 0 )
-                return aLibTable[i].getOutlineNumberingLevels;
+                return i.getOutlineNumberingLevels;
             else if( strcmp(pFunction, "getReservedWords") == 0 )
-                return aLibTable[i].getReservedWords;
+                return i.getReservedWords;
             else if( strcmp(pFunction, "getSearchOptions") == 0 )
-                return aLibTable[i].getSearchOptions;
+                return i.getSearchOptions;
             else if( strcmp(pFunction, "getTransliterations") == 0 )
-                return aLibTable[i].getTransliterations;
+                return i.getTransliterations;
             else if( strcmp(pFunction, "getUnicodeScripts") == 0 )
-                return aLibTable[i].getUnicodeScripts;
+                return i.getUnicodeScripts;
             else if( strcmp(pFunction, "getAllFormats1") == 0 )
-                return aLibTable[i].getAllFormats1;
+                return i.getAllFormats1;
 #endif
         }
     }


More information about the Libreoffice-commits mailing list