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

coverity#1222244 Uninitialized scalar field

Change-Id: Ia12b3fff503c47945d8237c09e679882f1a0ce5a
üst dd90d9b6
......@@ -45,8 +45,17 @@ class XSpellChecker1;
namespace sw
{
DocumentDrawModelManager::DocumentDrawModelManager( SwDoc& i_rSwdoc ) : m_rSwdoc(i_rSwdoc), mpDrawModel(0) {}
DocumentDrawModelManager::DocumentDrawModelManager(SwDoc& i_rSwdoc)
: m_rSwdoc(i_rSwdoc)
, mpDrawModel(0)
, mnHeaven(0)
, mnHell(0)
, mnControls(0)
, mnInvisibleHeaven(0)
, mnInvisibleHell(0)
, mnInvisibleControls(0)
{
}
// Is also called by the Sw3 Reader, if there was an error when reading the
// drawing layer. If it is called by the Sw3 Reader the layer is rebuilt
......
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