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 /basegfx/source/tools | |
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 'basegfx/source/tools')
-rw-r--r-- | basegfx/source/tools/debugplotter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/tools/debugplotter.cxx b/basegfx/source/tools/debugplotter.cxx index f85f1e1d9d9d..62044aed964f 100644 --- a/basegfx/source/tools/debugplotter.cxx +++ b/basegfx/source/tools/debugplotter.cxx @@ -130,7 +130,7 @@ namespace basegfx if( mpStream ) *mpStream << " " << rElem.first.getX() << "\t" << rElem.first.getY() << ::std::endl; else - OSL_TRACE( " %f\t%f\n", rElem.first.getX(), rElem.first.getY() ); + OSL_TRACE( " %f\t%f", rElem.first.getX(), rElem.first.getY() ); } void outputVector( const ::std::pair< B2DVector, ::rtl::OString >& rElem ) @@ -138,7 +138,7 @@ namespace basegfx if( mpStream ) *mpStream << " " << rElem.first.getX() << "\t" << rElem.first.getY() << ::std::endl << ::std::endl; else - OSL_TRACE( " %f\t%f\n\n", rElem.first.getX(), rElem.first.getY() ); + OSL_TRACE( " %f\t%f", rElem.first.getX(), rElem.first.getY() ); } void outputRect( const ::std::pair< B2DRange, ::rtl::OString >& rElem ) |