[Libreoffice-commits] core.git: avmedia/source

Stephan Bergmann sbergman at redhat.com
Tue Sep 3 00:36:20 PDT 2013


 avmedia/source/vlc/vlcwindow.cxx |   14 +++++++-------
 avmedia/source/vlc/vlcwindow.hxx |   14 +++++++-------
 2 files changed, 14 insertions(+), 14 deletions(-)

New commits:
commit 306dbe141da208fc3bfccd3186987ae480061448
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Sep 3 09:35:52 2013 +0200

    Missing exception specifications
    
    Change-Id: Ie0b0ce5f72c02f4dcdece48fe35bed50af4eb572

diff --git a/avmedia/source/vlc/vlcwindow.cxx b/avmedia/source/vlc/vlcwindow.cxx
index dd591bc..9d74fc2 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 268be6f..bc0568c 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);


More information about the Libreoffice-commits mailing list