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

coverity#707880 Uninitialized scalar field

Change-Id: Id58c2e45ba5043228da617eeb3bb84ef21d0f59e
üst c91e07e4
...@@ -125,7 +125,12 @@ class LoadEnvListener : public ::cppu::WeakImplHelper2< css::frame::XLoadEventLi ...@@ -125,7 +125,12 @@ class LoadEnvListener : public ::cppu::WeakImplHelper2< css::frame::XLoadEventLi
LoadEnv::LoadEnv(const css::uno::Reference< css::uno::XComponentContext >& xContext) LoadEnv::LoadEnv(const css::uno::Reference< css::uno::XComponentContext >& xContext)
throw(LoadEnvException, css::uno::RuntimeException) 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 ) , m_pQuietInteraction( 0 )
{ {
} }
......
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