diff options
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/remotecontrol/Listener.cxx | 3 | ||||
-rw-r--r-- | sd/source/ui/remotecontrol/Transmitter.cxx | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/sd/source/ui/remotecontrol/Listener.cxx b/sd/source/ui/remotecontrol/Listener.cxx index 67259d70a963..41e1dd6f3083 100644 --- a/sd/source/ui/remotecontrol/Listener.cxx +++ b/sd/source/ui/remotecontrol/Listener.cxx @@ -63,13 +63,13 @@ void Listener::init( const css::uno::Reference< css::presentation::XSlideShowCon } //----- XAnimationListener ---------------------------------------------------- + void SAL_CALL Listener::beginEvent(const css::uno::Reference< css::animations::XAnimationNode >& rNode ) throw (css::uno::RuntimeException) { (void) rNode; } - void SAL_CALL Listener::endEvent( const css::uno::Reference< css::animations::XAnimationNode >& rNode ) throw (css::uno::RuntimeException) { @@ -84,7 +84,6 @@ void SAL_CALL Listener::repeat( const css::uno::Reference< (void) aRepeat; } - //----- XSlideShowListener ---------------------------------------------------- void SAL_CALL Listener::paused (void) diff --git a/sd/source/ui/remotecontrol/Transmitter.cxx b/sd/source/ui/remotecontrol/Transmitter.cxx index f5861e4286f2..cc7b8ec8bf76 100644 --- a/sd/source/ui/remotecontrol/Transmitter.cxx +++ b/sd/source/ui/remotecontrol/Transmitter.cxx @@ -36,12 +36,14 @@ void SAL_CALL Transmitter::run() { OString aMessage( mHighPriority.front() ); mHighPriority.pop(); + SAL_INFO( "sdremote.bluetooth", "write high prio line '" << aMessage << "'" ); pStreamSocket->write( aMessage.getStr(), aMessage.getLength() ); } else if ( !mLowPriority.empty() ) { OString aMessage( mLowPriority.front() ); mLowPriority.pop(); + SAL_INFO( "sdremote.bluetooth", "write normal line '" << aMessage << "'" ); pStreamSocket->write( aMessage.getStr(), aMessage.getLength() ); } @@ -50,7 +52,6 @@ void SAL_CALL Transmitter::run() mQueuesNotEmpty.reset(); } } - } void Transmitter::notifyFinished() @@ -61,7 +62,6 @@ void Transmitter::notifyFinished() Transmitter::~Transmitter() { - } void Transmitter::addMessage( const OString& aMessage, const Priority aPriority ) |