summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2013-04-25 14:55:37 +0100
committerMichael Meeks <michael.meeks@suse.com>2013-04-30 13:19:51 +0100
commita06afd68edede3fd9de6f99466ee9c87aff941af (patch)
tree2ba461bcba6efd52bcd97b1dd49606a2e0e7f261 /sd
parentb308d0b061b24688cf1312af817a2af1c21e2bd8 (diff)
sdremote: protcol debug for send to match that for recv.
Change-Id: If2840336513772238ec43a9859d47a6e2a315e05
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/remotecontrol/Listener.cxx3
-rw-r--r--sd/source/ui/remotecontrol/Transmitter.cxx4
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 )