Kaydet (Commit) eac97e79 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707970 Uninitialized scalar field

Change-Id: I70cc8c7667d9cfb2fc043e3889c7fb5adc9abd52
üst 4ab06a57
...@@ -225,13 +225,15 @@ OUString GeometryHandler::impl_convertToFormula( const uno::Any& _rControlValue ...@@ -225,13 +225,15 @@ OUString GeometryHandler::impl_convertToFormula( const uno::Any& _rControlValue
aParser = ReportFormula( impl_isDataField(sName) ? ReportFormula::Field : ReportFormula::Expression, sName ); aParser = ReportFormula( impl_isDataField(sName) ? ReportFormula::Field : ReportFormula::Expression, sName );
return aParser.getCompleteFormula(); return aParser.getCompleteFormula();
} }
GeometryHandler::GeometryHandler(uno::Reference< uno::XComponentContext > const & context) :
GeometryHandler_Base(m_aMutex) GeometryHandler::GeometryHandler(uno::Reference< uno::XComponentContext > const & context)
,m_aPropertyListeners( m_aMutex ) : GeometryHandler_Base(m_aMutex)
,m_xContext(context) , m_aPropertyListeners(m_aMutex)
,m_pInfoService(new OPropertyInfoService()) , m_xContext(context)
,m_nDataFieldType(0) , m_pInfoService(new OPropertyInfoService())
,m_bIn(false) , m_nDataFieldType(0)
, m_bNewFunction(false)
, m_bIn(false)
{ {
try try
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment