diff options
Diffstat (limited to 'slideshow/source/engine/soundplayer.cxx')
-rw-r--r-- | slideshow/source/engine/soundplayer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/soundplayer.cxx b/slideshow/source/engine/soundplayer.cxx index 560693d925f3..502742ee306f 100644 --- a/slideshow/source/engine/soundplayer.cxx +++ b/slideshow/source/engine/soundplayer.cxx @@ -44,12 +44,12 @@ namespace slideshow { // TODO(Q3): Move the whole SoundPlayer class to avmedia. - boost::shared_ptr<SoundPlayer> SoundPlayer::create( + std::shared_ptr<SoundPlayer> SoundPlayer::create( EventMultiplexer & rEventMultiplexer, const OUString& rSoundURL, const uno::Reference< uno::XComponentContext>& rComponentContext ) { - boost::shared_ptr<SoundPlayer> pPlayer( + std::shared_ptr<SoundPlayer> pPlayer( new SoundPlayer( rEventMultiplexer, rSoundURL, rComponentContext ) ); |