summaryrefslogtreecommitdiff
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.hxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/slideshow/source/inc/soundplayer.hxx b/slideshow/source/inc/soundplayer.hxx
index c97298ca9806..1d6da3d0fbcf 100644
--- a/slideshow/source/inc/soundplayer.hxx
+++ b/slideshow/source/inc/soundplayer.hxx
@@ -57,15 +57,14 @@ namespace slideshow
Reference to a component context, used to create the
needed services
- @throws ::com::sun::star::lang::NoSupportException, if
+ @throws css::lang::NoSupportException, if
the sound file is invalid, or not supported by the
player service.
*/
static ::boost::shared_ptr<SoundPlayer> create(
EventMultiplexer & rEventMultiplexer,
const OUString& rSoundURL,
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::uno::XComponentContext>& rComponentContext );
+ const css::uno::Reference< css::uno::XComponentContext>& rComponentContext );
virtual ~SoundPlayer();
@@ -93,14 +92,13 @@ namespace slideshow
SoundPlayer(
EventMultiplexer & rEventMultiplexer,
const OUString& rSoundURL,
- const ::com::sun::star::uno::Reference<
- ::com::sun::star::uno::XComponentContext>& rComponentContext );
+ const css::uno::Reference< css::uno::XComponentContext>& rComponentContext );
EventMultiplexer & mrEventMultiplexer;
// TODO(Q3): obsolete when boost::enable_shared_ptr_from_this
// is available
::boost::shared_ptr<SoundPlayer> mThis;
- ::com::sun::star::uno::Reference< ::com::sun::star::media::XPlayer > mxPlayer;
+ css::uno::Reference< css::media::XPlayer > mxPlayer;
};
typedef ::boost::shared_ptr< SoundPlayer > SoundPlayerSharedPtr;