diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-28 09:49:28 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-28 10:31:04 +0100 |
commit | d085620d0306f7e9a0346950259c8770f067595a (patch) | |
tree | da51121dff5e4aac92b0bd41616578559803d2cf | |
parent | c7a53e6320d6b21ad29a0572f87d8ccc36549c15 (diff) |
coverity#708627 Uninitialized scalar field
Change-Id: I729eab07b6de04be07e8495f28d14bcf1191e00d
-rw-r--r-- | vcl/source/gdi/pdfextoutdevdata.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/gdi/pdfextoutdevdata.cxx b/vcl/source/gdi/pdfextoutdevdata.cxx index 7a1f437f53f8..da710651bc49 100644 --- a/vcl/source/gdi/pdfextoutdevdata.cxx +++ b/vcl/source/gdi/pdfextoutdevdata.cxx @@ -499,6 +499,8 @@ PDFExtOutDevData::PDFExtOutDevData( const OutputDevice& rOutDev ) : mbTransitionEffects ( true ), mbUseLosslessCompression( true ), mbReduceImageResolution ( false ), + mbExportFormFields ( false ), + mbExportBookmarks ( false ), mbExportHiddenSlides ( false ), mbExportNDests ( false ), mnFormsFormat ( 0 ), |