summaryrefslogtreecommitdiff
path: root/bundled
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2019-03-27 09:22:49 +0200
committerTor Lillqvist <tml@collabora.com>2019-03-27 09:23:08 +0200
commit3791ebace315e4a20f5769980213a1fc03188519 (patch)
tree024d4d32b5da7d65f03c0c8ff656e985944b7031 /bundled
parenta81b02b2c6d4b7c164ef2c860d763616dd83f06a (diff)
Update to match core master
Change-Id: I9670676db84cbce949bf230d62f9c1f7666fe09f
Diffstat (limited to 'bundled')
-rw-r--r--bundled/include/LibreOfficeKit/LibreOfficeKitInit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundled/include/LibreOfficeKit/LibreOfficeKitInit.h b/bundled/include/LibreOfficeKit/LibreOfficeKitInit.h
index 5dbf2f83f..c00c33193 100644
--- a/bundled/include/LibreOfficeKit/LibreOfficeKitInit.h
+++ b/bundled/include/LibreOfficeKit/LibreOfficeKitInit.h
@@ -249,13 +249,13 @@ typedef LibreOfficeKit *(LokHookFunction2)( const char *install_path, const char
typedef int (LokHookPreInit) ( const char *install_path, const char *user_profile_url );
-#if defined(IOS)
+#if defined(IOS) || defined(ANDROID)
LibreOfficeKit *libreofficekit_hook_2(const char* install_path, const char* user_profile_path);
#endif
static LibreOfficeKit *lok_init_2( const char *install_path, const char *user_profile_url )
{
-#if !defined(IOS)
+#if !defined(IOS) && !defined(ANDROID)
void *dlhandle;
char *imp_lib;
LokHookFunction *pSym;