diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/imet/ios2met.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vcl/source/filter/imet/ios2met.cxx b/vcl/source/filter/imet/ios2met.cxx index a9c7a2cdde96..d80a8e5d1cc7 100644 --- a/vcl/source/filter/imet/ios2met.cxx +++ b/vcl/source/filter/imet/ios2met.cxx @@ -231,6 +231,16 @@ struct OSArea { RasterOp eMix; RasterOp eBgMix; bool bFill; + + OSArea() + : pSucc(nullptr) + , nFlags(0) + , bClosed(false) + , eMix(RasterOp::OverPaint) + , eBgMix(RasterOp::OverPaint) + , bFill(false) + { + } }; struct OSPath |