summaryrefslogtreecommitdiffstats
path: root/slideshow/source/inc/soundplayer.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/inc/soundplayer.hxx')
-rw-r--r--slideshow/source/inc/soundplayer.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/slideshow/source/inc/soundplayer.hxx b/slideshow/source/inc/soundplayer.hxx
index 1d6da3d0fbcf..737103512dec 100644
--- a/slideshow/source/inc/soundplayer.hxx
+++ b/slideshow/source/inc/soundplayer.hxx
@@ -26,7 +26,7 @@
#include <com/sun/star/media/XManager.hpp>
#include <com/sun/star/media/XPlayer.hpp>
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include "pauseeventhandler.hxx"
#include "disposable.hxx"
@@ -61,7 +61,7 @@ namespace slideshow
the sound file is invalid, or not supported by the
player service.
*/
- static ::boost::shared_ptr<SoundPlayer> create(
+ static ::std::shared_ptr<SoundPlayer> create(
EventMultiplexer & rEventMultiplexer,
const OUString& rSoundURL,
const css::uno::Reference< css::uno::XComponentContext>& rComponentContext );
@@ -97,11 +97,11 @@ namespace slideshow
EventMultiplexer & mrEventMultiplexer;
// TODO(Q3): obsolete when boost::enable_shared_ptr_from_this
// is available
- ::boost::shared_ptr<SoundPlayer> mThis;
+ ::std::shared_ptr<SoundPlayer> mThis;
css::uno::Reference< css::media::XPlayer > mxPlayer;
};
- typedef ::boost::shared_ptr< SoundPlayer > SoundPlayerSharedPtr;
+ typedef ::std::shared_ptr< SoundPlayer > SoundPlayerSharedPtr;
}
}