diff options
author | Michael Meeks <michael.meeks@suse.com> | 2013-01-18 17:54:22 +0800 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2013-02-15 10:52:39 +0000 |
commit | 7b66d015ea8f9cd1af2f3effd837366773cc4fa3 (patch) | |
tree | 57ce47d46958829af6d56e4c23661b9c10ec69ad /android | |
parent | 55eef1da87da7a951c51bd8fa88334a9380ca481 (diff) |
add missing chartcore.
Change-Id: I069065fedddad0585851629b6c674cd613ad4409
Diffstat (limited to 'android')
-rw-r--r-- | android/experimental/LibreOffice4Android/native-code.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/android/experimental/LibreOffice4Android/native-code.cxx b/android/experimental/LibreOffice4Android/native-code.cxx index 676eed78ae16..30dae382ef16 100644 --- a/android/experimental/LibreOffice4Android/native-code.cxx +++ b/android/experimental/LibreOffice4Android/native-code.cxx @@ -14,6 +14,7 @@ extern "C" extern void * animcore_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * avmedia_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * basprov_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); + extern void * chartcore_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * dba_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * dbaxml_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); extern void * dlgprov_component_getFactory( const char * pImplName, void * pServiceManager, void * pRegistryKey ); @@ -80,6 +81,7 @@ lo_get_libmap(void) { "libanimcorelo.a", animcore_component_getFactory }, { "libavmedialo.a", avmedia_component_getFactory }, { "libbasprov.uno.a", basprov_component_getFactory }, + { "libchartcorelo.a", chartcore_component_getFactory }, { "libdlgprov.uno.a", dlgprov_component_getFactory }, { "libdbalo.a", dba_component_getFactory }, { "libdbaxmllo.a", dbaxml_component_getFactory }, |