From eac97e7925a7e7dc47c9860fecf47fa4ff498b41 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 2 Apr 2014 12:52:27 +0100 Subject: coverity#707970 Uninitialized scalar field Change-Id: I70cc8c7667d9cfb2fc043e3889c7fb5adc9abd52 --- reportdesign/source/ui/inspection/GeometryHandler.cxx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'reportdesign/source/ui') diff --git a/reportdesign/source/ui/inspection/GeometryHandler.cxx b/reportdesign/source/ui/inspection/GeometryHandler.cxx index 325b3a74e1d2..6d5838b341ee 100644 --- a/reportdesign/source/ui/inspection/GeometryHandler.cxx +++ b/reportdesign/source/ui/inspection/GeometryHandler.cxx @@ -225,13 +225,15 @@ OUString GeometryHandler::impl_convertToFormula( const uno::Any& _rControlValue aParser = ReportFormula( impl_isDataField(sName) ? ReportFormula::Field : ReportFormula::Expression, sName ); return aParser.getCompleteFormula(); } -GeometryHandler::GeometryHandler(uno::Reference< uno::XComponentContext > const & context) : - GeometryHandler_Base(m_aMutex) - ,m_aPropertyListeners( m_aMutex ) - ,m_xContext(context) - ,m_pInfoService(new OPropertyInfoService()) - ,m_nDataFieldType(0) - ,m_bIn(false) + +GeometryHandler::GeometryHandler(uno::Reference< uno::XComponentContext > const & context) + : GeometryHandler_Base(m_aMutex) + , m_aPropertyListeners(m_aMutex) + , m_xContext(context) + , m_pInfoService(new OPropertyInfoService()) + , m_nDataFieldType(0) + , m_bNewFunction(false) + , m_bIn(false) { try { -- cgit