[Libreoffice-commits] core.git: sd/inc sd/source

Stephan Bergmann sbergman at redhat.com
Tue Apr 15 00:27:36 PDT 2014


 sd/inc/randomnode.hxx              |    4 ++--
 sd/source/ui/unoidl/randomnode.cxx |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit fe51a3aa9e4ab850ee5bb4f8afa816266aa30bbe
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Apr 15 09:26:47 2014 +0200

    Fix symbol visibility
    
    Change-Id: I3d25b1363ea49dc65a1cae0925504b8c442f6e65

diff --git a/sd/inc/randomnode.hxx b/sd/inc/randomnode.hxx
index 4496fd9..83cb52b 100644
--- a/sd/inc/randomnode.hxx
+++ b/sd/inc/randomnode.hxx
@@ -24,8 +24,8 @@
 
 namespace sd {
 
-css::uno::Reference<css::uno::XInterface> RandomAnimationNode_createInstance(
-    sal_Int16 nPresetClass);
+SD_DLLPUBLIC css::uno::Reference<css::uno::XInterface>
+RandomAnimationNode_createInstance(sal_Int16 nPresetClass);
 
 }
 
diff --git a/sd/source/ui/unoidl/randomnode.cxx b/sd/source/ui/unoidl/randomnode.cxx
index 830694f..a2451ab 100644
--- a/sd/source/ui/unoidl/randomnode.cxx
+++ b/sd/source/ui/unoidl/randomnode.cxx
@@ -156,7 +156,7 @@ private:
 
 
 
-SD_DLLPUBLIC Reference< XInterface > RandomAnimationNode_createInstance( sal_Int16 nPresetClass )
+Reference< XInterface > RandomAnimationNode_createInstance( sal_Int16 nPresetClass )
 {
     Reference< XInterface > xInt( static_cast<XWeak*>( new RandomAnimationNode( nPresetClass ) ) );
     return xInt;


More information about the Libreoffice-commits mailing list