diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-09-20 10:18:12 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-09-21 09:28:39 +0200 |
commit | be6a8677a6ddb6387272a78406ec2149c4319f3d (patch) | |
tree | 0e6be3608de08f831f596a5c2dc5a3590d4a62c6 /comphelper/source | |
parent | 6058133765a1f874d6bf9fb9f4d0811db32adc10 (diff) |
OSL_TRACE: Remove trailing newlines
Done with perl regex:
s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs;
- removed trailing whitespaces and (multiple) newlines
Diffstat (limited to 'comphelper/source')
-rw-r--r-- | comphelper/source/misc/asyncnotification.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/source/misc/asyncnotification.cxx b/comphelper/source/misc/asyncnotification.cxx index 5697eb62b6b5..282ff1efefdb 100644 --- a/comphelper/source/misc/asyncnotification.cxx +++ b/comphelper/source/misc/asyncnotification.cxx @@ -184,7 +184,7 @@ namespace comphelper { ::osl::MutexGuard aGuard( m_pImpl->aMutex ); - OSL_TRACE( "AsyncEventNotifier(%p): adding %p\n", this, _rEvent.get() ); + OSL_TRACE( "AsyncEventNotifier(%p): adding %p", this, _rEvent.get() ); // remember this event m_pImpl->aEvents.push_back( ProcessableEvent( _rEvent, _xProcessor ) ); @@ -213,7 +213,7 @@ namespace comphelper xNextProcessor = aEvent.xProcessor; m_pImpl->aEvents.pop_front(); - OSL_TRACE( "AsyncEventNotifier(%p): popping %p\n", this, aNextEvent.get() ); + OSL_TRACE( "AsyncEventNotifier(%p): popping %p", this, aNextEvent.get() ); if ( !aNextEvent.get() ) continue; @@ -224,7 +224,7 @@ namespace comphelper { m_pImpl->m_aDeadProcessors.erase( xNextProcessor ); xNextProcessor.clear(); - OSL_TRACE( "AsyncEventNotifier(%p): removing %p\n", this, aNextEvent.get() ); + OSL_TRACE( "AsyncEventNotifier(%p): removing %p", this, aNextEvent.get() ); } // if there was a termination request (->terminate), respect it |