diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-12 10:03:28 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-06-12 10:03:55 +0200 |
commit | 2b700a710e44d2d09f45793f5f2448268e66d4fe (patch) | |
tree | ec1e2964966d102ba620ae74bfdaf2b6dbbbc1ee /vcl | |
parent | 28e94510f05f37218393d41924dc00da34c2c3a1 (diff) |
EMF+: aBaseTransform is a hardcoded identity matrix, don't bother with it
Change-Id: Ifa4f42c4f17a70c7238347a13897ef6742eb4679
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/wmf/winmtf.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/vcl/source/filter/wmf/winmtf.cxx b/vcl/source/filter/wmf/winmtf.cxx index ac3fec137baa..62530c1d3061 100644 --- a/vcl/source/filter/wmf/winmtf.cxx +++ b/vcl/source/filter/wmf/winmtf.cxx @@ -2251,15 +2251,6 @@ void WinMtfOutput::PassEMFPlusHeaderInfo() mem << nLeft << nTop << nRight << nBottom; mem << mnPixX << mnPixY << mnMillX << mnMillY; - float one, zero; - - one = 1; - zero = 0; - - // add transformation matrix to be used in vcl's metaact.cxx for - // rotate and scale operations - mem << one << zero << zero << one << zero << zero; - // need to flush the stream, otherwise GetEndOfData will return 0 // on windows where the function parameters are probably resolved in reverse order mem.Flush(); |