coverity#707880 Uninitialized scalar field

Change-Id: Id58c2e45ba5043228da617eeb3bb84ef21d0f59e
This commit is contained in:
Caolán McNamara
2014-04-23 13:34:44 +01:00
parent c91e07e45b
commit cffe7a15b0

View File

@@ -125,7 +125,12 @@ class LoadEnvListener : public ::cppu::WeakImplHelper2< css::frame::XLoadEventLi
LoadEnv::LoadEnv(const css::uno::Reference< css::uno::XComponentContext >& xContext)
throw(LoadEnvException, css::uno::RuntimeException)
: m_xContext (xContext)
: m_xContext(xContext)
, m_nSearchFlags(0)
, m_eFeature(E_NO_FEATURE)
, m_eContentType(E_UNSUPPORTED_CONTENT)
, m_bCloseFrameOnError(false)
, m_bReactivateControllerOnError(false)
, m_pQuietInteraction( 0 )
{
}