diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-04-18 01:21:31 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-04-18 01:23:51 +0300 |
commit | f06e6513a805d810d3ef8fc9ccf90d1b7cf48c3d (patch) | |
tree | cc24f18f066b0aa0f4f5c77ae4dfb052ce651397 /i18npool/inc | |
parent | 4048a810a0c00af2bf94d24243ff02a832f63de3 (diff) |
Use static linking when DISABLE_DYNLOADING (iOS)
Diffstat (limited to 'i18npool/inc')
-rw-r--r-- | i18npool/inc/indexentrysupplier_asian.hxx | 2 | ||||
-rw-r--r-- | i18npool/inc/textToPronounce_zh.hxx | 6 | ||||
-rw-r--r-- | i18npool/inc/xdictionary.hxx | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/i18npool/inc/indexentrysupplier_asian.hxx b/i18npool/inc/indexentrysupplier_asian.hxx index db6e174b7a31..642d1c942a17 100644 --- a/i18npool/inc/indexentrysupplier_asian.hxx +++ b/i18npool/inc/indexentrysupplier_asian.hxx @@ -58,8 +58,10 @@ public: rtl::OUString SAL_CALL getPhoneticCandidate( const rtl::OUString& rIndexEntry, const com::sun::star::lang::Locale& rLocale ) throw (com::sun::star::uno::RuntimeException); +#ifndef DISABLE_DYNLOADING private: oslModule hModule; +#endif }; } } } } diff --git a/i18npool/inc/textToPronounce_zh.hxx b/i18npool/inc/textToPronounce_zh.hxx index 9543b267ef6a..45c5c3c67f65 100644 --- a/i18npool/inc/textToPronounce_zh.hxx +++ b/i18npool/inc/textToPronounce_zh.hxx @@ -36,12 +36,18 @@ namespace com { namespace sun { namespace star { namespace i18n { class TextToPronounce_zh : public transliteration_Ignore { protected: +#ifndef DISABLE_DYNLOADING oslModule hModule; +#endif sal_uInt16 **idx; const sal_Unicode* SAL_CALL getPronounce(const sal_Unicode ch); public: +#ifndef DISABLE_DYNLOADING TextToPronounce_zh(const sal_Char* func_name); +#else + TextToPronounce_zh(sal_uInt16 ** (*function)()); +#endif ~TextToPronounce_zh(); rtl::OUString SAL_CALL diff --git a/i18npool/inc/xdictionary.hxx b/i18npool/inc/xdictionary.hxx index 8ac931449636..d7b187d10a7f 100644 --- a/i18npool/inc/xdictionary.hxx +++ b/i18npool/inc/xdictionary.hxx @@ -57,7 +57,9 @@ private: const sal_Int32 * index2; const sal_Int32 * lenArray; const sal_Unicode* dataArea; +#ifndef DISABLE_DYNLOADING oslModule hModule; +#endif Boundary boundary; sal_Bool japaneseWordBreak; |