diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-03 10:14:26 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-03 10:14:54 +1100 |
commit | 145a569fb15b77f3e85ce50295511111bb1d8adc (patch) | |
tree | 384f021ba25032bf18b69b9094cd6141479425fb | |
parent | 1dfb68debb01dcc0aa5902f41bc17c7a97e47b26 (diff) |
vcl: cosmetic change - it appears some newlines were missing in wmfwr.cxx
Change-Id: I1c1678c96d5b2f4a88299b9b3da317fa28ba96c4
-rw-r--r-- | vcl/source/filter/wmf/wmfwr.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/vcl/source/filter/wmf/wmfwr.cxx b/vcl/source/filter/wmf/wmfwr.cxx index 4ab9868f3998..72830fbbbeda 100644 --- a/vcl/source/filter/wmf/wmfwr.cxx +++ b/vcl/source/filter/wmf/wmfwr.cxx @@ -802,7 +802,12 @@ void WMFWriter::WMFRecord_StretchDIB( const Point & rPoint, const Size & rSize, } } - pWMF->WriteUInt32( nROP ). WriteInt16( 0 ). WriteInt16( rBitmap.GetSizePixel().Height() ). WriteInt16( rBitmap.GetSizePixel().Width() ). WriteInt16( 0 ). WriteInt16( 0 ); + pWMF->WriteUInt32( nROP ). + WriteInt16( 0 ). + WriteInt16( rBitmap.GetSizePixel().Height() ). + WriteInt16( rBitmap.GetSizePixel().Width() ). + WriteInt16( 0 ). + WriteInt16( 0 ); WriteHeightWidth(rSize); WritePointYX(rPoint); |