[Libreoffice-commits] core.git: Branch 'aoo/trunk' - ucb/source

Damjan Jovanovic damjan at apache.org
Wed Jan 4 22:08:36 UTC 2017


 ucb/source/ucp/expand/ucpexpand.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 76017e27756913851d126b1fb966c0ab473e60d6
Author: Damjan Jovanovic <damjan at apache.org>
Date:   Wed Jan 4 18:15:13 2017 +0000

    Fix a regression that caused AOO to crash on startup, due to the
    
    ucpexpand1 library no longer exporting symbols after the port to gbuild.
    
    Patch by: me

diff --git a/ucb/source/ucp/expand/ucpexpand.cxx b/ucb/source/ucp/expand/ucpexpand.cxx
index 570c03a..ee63771 100644
--- a/ucb/source/ucp/expand/ucpexpand.cxx
+++ b/ucb/source/ucp/expand/ucpexpand.cxx
@@ -263,13 +263,13 @@ static const ::cppu::ImplementationEntry s_entries [] =
 extern "C"
 {
 
-void SAL_CALL component_getImplementationEnvironment(
+SAL_DLLPUBLIC_EXPORT void SAL_CALL component_getImplementationEnvironment(
     const sal_Char ** ppEnvTypeName, uno_Environment ** )
 {
     *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
 }
 
-void * SAL_CALL component_getFactory(
+SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(
     const sal_Char * pImplName,
     lang::XMultiServiceFactory * pServiceManager,
     registry::XRegistryKey * pRegistryKey )


More information about the Libreoffice-commits mailing list