summaryrefslogtreecommitdiffstats
path: root/avmedia/source/vlc/vlcwindow.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'avmedia/source/vlc/vlcwindow.cxx')
-rw-r--r--avmedia/source/vlc/vlcwindow.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/avmedia/source/vlc/vlcwindow.cxx b/avmedia/source/vlc/vlcwindow.cxx
index dd591bcd0fc5..9d74fc202059 100644
--- a/avmedia/source/vlc/vlcwindow.cxx
+++ b/avmedia/source/vlc/vlcwindow.cxx
@@ -14,35 +14,35 @@ SAL_CALL VLCWindow::VLCWindow(VLCPlayer& player)
{
}
-void SAL_CALL VLCWindow::update()
+void SAL_CALL VLCWindow::update() throw (css::uno::RuntimeException)
{
}
-::sal_Bool SAL_CALL VLCWindow::setZoomLevel( css::media::ZoomLevel )
+::sal_Bool SAL_CALL VLCWindow::setZoomLevel( css::media::ZoomLevel ) throw (css::uno::RuntimeException)
{
return false;
}
-css::media::ZoomLevel SAL_CALL VLCWindow::getZoomLevel()
+css::media::ZoomLevel SAL_CALL VLCWindow::getZoomLevel() throw (css::uno::RuntimeException)
{
return css::media::ZoomLevel_NOT_AVAILABLE;
}
-void SAL_CALL VLCWindow::setPointerType( ::sal_Int32 )
+void SAL_CALL VLCWindow::setPointerType( ::sal_Int32 ) throw (css::uno::RuntimeException)
{
}
-::rtl::OUString SAL_CALL VLCWindow::getImplementationName()
+::rtl::OUString SAL_CALL VLCWindow::getImplementationName() throw (css::uno::RuntimeException)
{
return AVMEDIA_VLC_WINDOW_IMPLEMENTATIONNAME;
}
-::sal_Bool SAL_CALL VLCWindow::supportsService( const ::rtl::OUString& serviceName )
+::sal_Bool SAL_CALL VLCWindow::supportsService( const ::rtl::OUString& serviceName ) throw (css::uno::RuntimeException)
{
return serviceName == AVMEDIA_VLC_WINDOW_SERVICENAME;
}
-uno::Sequence< ::rtl::OUString > SAL_CALL VLCWindow::getSupportedServiceNames()
+uno::Sequence< ::rtl::OUString > SAL_CALL VLCWindow::getSupportedServiceNames() throw (css::uno::RuntimeException)
{
uno::Sequence< OUString > aRet(1);
aRet[0] = AVMEDIA_VLC_WINDOW_SERVICENAME;