summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-04-28 21:25:39 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-04-28 21:26:03 +0200
commit1d4974ba066174fb1e000d5e0a2c41a4f7feaf18 (patch)
tree069ae31f7f85e8856cfa2c3e4d796f15e394ddfc /i18npool
parentf8eb7f9c7db6c3dd460868d00758733318cdc266 (diff)
i18npool: fix Android build
Change-Id: If7321acf4cb8542709cd3f2b418af97586862d46
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/source/localedata/localedata.cxx38
1 files changed, 19 insertions, 19 deletions
diff --git a/i18npool/source/localedata/localedata.cxx b/i18npool/source/localedata/localedata.cxx
index bfb59aac8864..06da7af10a73 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
}
}