diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-09-26 09:50:40 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-09-26 09:50:40 +0100 |
commit | ed0d0e84864c6952eb9db47eaed3aef72f08fcc8 (patch) | |
tree | dc1d3c671fe12614d14650764bbb4b8818d97976 /sdext | |
parent | 1ea13f5c953bc388d1615c61113326532e6a1b01 (diff) |
what is it with the explicit voids
Change-Id: I7d3995f16351cb1686003f2ba7a044ac99d6d10b
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/presenter/PresenterSpritePane.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sdext/source/presenter/PresenterSpritePane.hxx b/sdext/source/presenter/PresenterSpritePane.hxx index 386ce53a9289..28fb261714f9 100644 --- a/sdext/source/presenter/PresenterSpritePane.hxx +++ b/sdext/source/presenter/PresenterSpritePane.hxx @@ -52,25 +52,25 @@ public: PresenterSpritePane ( const css::uno::Reference<css::uno::XComponentContext>& rxContext, const ::rtl::Reference<PresenterController>& rpPresenterController); - virtual ~PresenterSpritePane (void); + virtual ~PresenterSpritePane(); - virtual void SAL_CALL disposing (void) SAL_OVERRIDE; + virtual void SAL_CALL disposing() SAL_OVERRIDE; using css::lang::XEventListener::disposing; - ::boost::shared_ptr<PresenterSprite> GetSprite (void); + ::boost::shared_ptr<PresenterSprite> GetSprite(); - static OUString getImplementationName_static (void); - static css::uno::Sequence< OUString > getSupportedServiceNames_static (void); + static OUString getImplementationName_static(); + static css::uno::Sequence< OUString > getSupportedServiceNames_static(); static css::uno::Reference<css::uno::XInterface> Create( const css::uno::Reference<css::uno::XComponentContext>& rxContext); // XPane - virtual css::uno::Reference<css::awt::XWindow> SAL_CALL getWindow (void) + virtual css::uno::Reference<css::awt::XWindow> SAL_CALL getWindow() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; - virtual css::uno::Reference<css::rendering::XCanvas> SAL_CALL getCanvas (void) + virtual css::uno::Reference<css::rendering::XCanvas> SAL_CALL getCanvas() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; // XWindowListener @@ -100,7 +100,7 @@ private: virtual void CreateCanvases ( const css::uno::Reference<css::awt::XWindow>& rxParentWindow, const css::uno::Reference<css::rendering::XSpriteCanvas>& rxParentCanvas) SAL_OVERRIDE; - void UpdateCanvases (void); + void UpdateCanvases(); }; } } // end of namespace ::sd::presenter |