diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-03 09:35:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-09-03 09:35:52 +0200 |
commit | 306dbe141da208fc3bfccd3186987ae480061448 (patch) | |
tree | aeca909573d253cf693bee4a5288788d833bee88 /avmedia | |
parent | 03737426620f570e33b93f92a4bd4e4b6d2deba3 (diff) |
Missing exception specifications
Change-Id: Ie0b0ce5f72c02f4dcdece48fe35bed50af4eb572
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/vlc/vlcwindow.cxx | 14 | ||||
-rw-r--r-- | avmedia/source/vlc/vlcwindow.hxx | 14 |
2 files changed, 14 insertions, 14 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; diff --git a/avmedia/source/vlc/vlcwindow.hxx b/avmedia/source/vlc/vlcwindow.hxx index 268be6fb5901..bc0568cb13c7 100644 --- a/avmedia/source/vlc/vlcwindow.hxx +++ b/avmedia/source/vlc/vlcwindow.hxx @@ -32,14 +32,14 @@ class VLCWindow : public ::cppu::WeakImplHelper2 < ::com::sun::star::media::XPla public: SAL_CALL VLCWindow(VLCPlayer& player); - void SAL_CALL update(); - ::sal_Bool SAL_CALL setZoomLevel( css::media::ZoomLevel ZoomLevel ); - css::media::ZoomLevel SAL_CALL getZoomLevel(); - void SAL_CALL setPointerType( ::sal_Int32 SystemPointerType ); + void SAL_CALL update() throw (css::uno::RuntimeException); + ::sal_Bool SAL_CALL setZoomLevel( css::media::ZoomLevel ZoomLevel ) throw (css::uno::RuntimeException); + css::media::ZoomLevel SAL_CALL getZoomLevel() throw (css::uno::RuntimeException); + void SAL_CALL setPointerType( ::sal_Int32 SystemPointerType ) throw (css::uno::RuntimeException); - ::rtl::OUString SAL_CALL getImplementationName(); - ::sal_Bool SAL_CALL supportsService( const ::rtl::OUString& serviceName ); - ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames(); + ::rtl::OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException); + ::sal_Bool SAL_CALL supportsService( const ::rtl::OUString& serviceName ) throw (css::uno::RuntimeException); + ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException); void SAL_CALL dispose() throw (::com::sun::star::uno::RuntimeException); void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException); |