diff options
Diffstat (limited to 'sd/source/ui/remotecontrol')
-rw-r--r-- | sd/source/ui/remotecontrol/Listener.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/remotecontrol/Listener.hxx | 5 | ||||
-rw-r--r-- | sd/source/ui/remotecontrol/Receiver.cxx | 4 |
3 files changed, 6 insertions, 7 deletions
diff --git a/sd/source/ui/remotecontrol/Listener.cxx b/sd/source/ui/remotecontrol/Listener.cxx index 5ba6cfda15ab..afa7cded78d7 100644 --- a/sd/source/ui/remotecontrol/Listener.cxx +++ b/sd/source/ui/remotecontrol/Listener.cxx @@ -86,7 +86,7 @@ void SAL_CALL Listener::repeat( const css::uno::Reference< //----- XSlideShowListener ---------------------------------------------------- void SAL_CALL Listener::paused() - throw (com::sun::star::uno::RuntimeException, std::exception) + throw (css::uno::RuntimeException, std::exception) { } @@ -145,7 +145,7 @@ void SAL_CALL Listener::disposing() void SAL_CALL Listener::disposing ( const css::lang::EventObject& rEvent) - throw (::com::sun::star::uno::RuntimeException, std::exception) + throw (css::uno::RuntimeException, std::exception) { (void) rEvent; dispose(); diff --git a/sd/source/ui/remotecontrol/Listener.hxx b/sd/source/ui/remotecontrol/Listener.hxx index 284cb71f13c8..2f2ff2b861fb 100644 --- a/sd/source/ui/remotecontrol/Listener.hxx +++ b/sd/source/ui/remotecontrol/Listener.hxx @@ -56,9 +56,8 @@ public: // XEventListener virtual void SAL_CALL disposing() override; - virtual void SAL_CALL disposing ( - const com::sun::star::lang::EventObject& rEvent) - throw (com::sun::star::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL disposing (const css::lang::EventObject& rEvent) + throw (css::uno::RuntimeException, std::exception) override; private: rtl::Reference<Communicator> mCommunicator; diff --git a/sd/source/ui/remotecontrol/Receiver.cxx b/sd/source/ui/remotecontrol/Receiver.cxx index dc7b8cc8f4cc..892d72b98653 100644 --- a/sd/source/ui/remotecontrol/Receiver.cxx +++ b/sd/source/ui/remotecontrol/Receiver.cxx @@ -137,7 +137,7 @@ void Receiver::executeCommand( const std::vector<OString> &aCommand ) float y = aCommand[2].toFloat(); SolarMutexGuard aSolarGuard; - const ::com::sun::star::geometry::RealPoint2D pos(x,y); + const css::geometry::RealPoint2D pos(x,y); // std::cerr << "Pointer at ("<<pos.X<<","<<pos.Y<<")" << std::endl; if (xSlideShow.is()) try @@ -196,7 +196,7 @@ void Receiver::executeCommand( const std::vector<OString> &aCommand ) float y = aCommand[2].toFloat(); SAL_INFO( "sdremote", "Pointer at ("<<x<<","<<y<<")" ); - const ::com::sun::star::geometry::RealPoint2D pos(x,y); + const css::geometry::RealPoint2D pos(x,y); SolarMutexGuard aSolarGuard; if (xSlideShow.is()) try |