summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-01-29 23:22:38 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-01-29 23:36:53 -0600
commit72edfcdc909528155f78530edb1c7a5bc1d24699 (patch)
tree10e35b499feca2de71578700b5e5d24490061f5b /filter
parent75a617a72a66cb4eff43e10f13cf53d0109cdf4b (diff)
coverity#1000862 : Uninitialized scalar field
Change-Id: Ife99bf91d569e8ee8cac41980112101c0e3e6127
Diffstat (limited to 'filter')
-rw-r--r--filter/source/graphic/GraphicExportDialog.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/filter/source/graphic/GraphicExportDialog.cxx b/filter/source/graphic/GraphicExportDialog.cxx
index 3250445346ca..ace8e75d825c 100644
--- a/filter/source/graphic/GraphicExportDialog.cxx
+++ b/filter/source/graphic/GraphicExportDialog.cxx
@@ -36,9 +36,10 @@ using namespace css::uno;
using namespace css::beans;
using namespace css::lang;
-GraphicExportDialog::GraphicExportDialog( const Reference< XComponentContext >& rxContext ) :
- mxContext ( rxContext ),
- mbExportSelection ( false )
+GraphicExportDialog::GraphicExportDialog( const Reference< XComponentContext >& rxContext )
+ : mxContext( rxContext )
+ , meFieldUnit(FUNIT_NONE)
+ , mbExportSelection( false )
{
}