From be6a8677a6ddb6387272a78406ec2149c4319f3d Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Tue, 20 Sep 2011 10:18:12 +0200 Subject: 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 --- comphelper/source/misc/asyncnotification.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'comphelper/source') 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 -- cgit