Fix symbol visibility

Change-Id: I3d25b1363ea49dc65a1cae0925504b8c442f6e65
This commit is contained in:
Stephan Bergmann 2014-04-15 09:26:47 +02:00
parent eb4c43aa61
commit fe51a3aa9e
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}

View File

@ -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;