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
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
{
......
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