diff options
author | Andrzej J. R. Hunt <andrzej@ahunt.org> | 2012-07-17 23:22:39 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-08-06 10:22:57 +0100 |
commit | 19559652a866ab052f4cdb06d62d08c1d41aef24 (patch) | |
tree | b4ee6f0a869a9c24eaaad549a5dc810f27755cf5 /sd/source/ui/remotecontrol/Transmitter.cxx | |
parent | 6368d371b00cc3f62530b9b95bf04ad07f24319a (diff) |
Merged changes.
Change-Id: I436a3ac7af0fbad3f37c6799de9186142f0af430
Diffstat (limited to 'sd/source/ui/remotecontrol/Transmitter.cxx')
-rw-r--r-- | sd/source/ui/remotecontrol/Transmitter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/remotecontrol/Transmitter.cxx b/sd/source/ui/remotecontrol/Transmitter.cxx index bc25355a1bcf..24189a381862 100644 --- a/sd/source/ui/remotecontrol/Transmitter.cxx +++ b/sd/source/ui/remotecontrol/Transmitter.cxx @@ -34,7 +34,7 @@ Transmitter::execute() osl::MutexGuard aQueueGuard( mQueueMutex ); while ( mHighPriority.size() ) { - OString aMessage = mHighPriority.front(); + OString aMessage( mHighPriority.front() ); mHighPriority.pop(); fprintf(stderr , " Writing HIGHP:\n%s<<END>>", aMessage.getStr() ); mStreamSocket.write( aMessage.getStr(), aMessage.getLength() ); @@ -42,7 +42,7 @@ Transmitter::execute() if( mLowPriority.size() ) { - OString aMessage = mLowPriority.front(); + OString aMessage( mLowPriority.front() ); mLowPriority.pop(); fprintf(stderr , " Writing LOWP:\n%s<<END>>", aMessage.getStr() ); mStreamSocket.write( aMessage.getStr(), aMessage.getLength() ); |