summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-15 09:26:47 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-15 09:27:04 +0200
commitfe51a3aa9e4ab850ee5bb4f8afa816266aa30bbe (patch)
treea91fb5b7aabe14a892fdacb68a706b94a8147010 /sd
parenteb4c43aa61c08f88acfe5dd1499de0f8dbda4b8b (diff)
Fix symbol visibility
Change-Id: I3d25b1363ea49dc65a1cae0925504b8c442f6e65
Diffstat (limited to 'sd')
-rw-r--r--sd/inc/randomnode.hxx4
-rw-r--r--sd/source/ui/unoidl/randomnode.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/sd/inc/randomnode.hxx b/sd/inc/randomnode.hxx
index 4496fd97e71d..83cb52b44c38 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 830694fea882..a2451abbbf78 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;