summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-15 20:20:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-16 11:23:09 +0100
commit73bae2f2c38dd07d48b03eb5713a3f14ba1dbbb2 (patch)
treec8fcbb81bfc16bd1a6d54197c60fee8db28549a0
parentdbbb805bf05d2371ea9dbd5f39fbeb67ecefd8b8 (diff)
coverity#1202972 Uninitialized scalar field
Change-Id: Ia30cda04b43dad52079c9b9972af0cd0477eb44b
-rw-r--r--sw/source/core/uibase/app/docshini.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/core/uibase/app/docshini.cxx b/sw/source/core/uibase/app/docshini.cxx
index e6c30524588a..7da150f9ac9f 100644
--- a/sw/source/core/uibase/app/docshini.cxx
+++ b/sw/source/core/uibase/app/docshini.cxx
@@ -334,7 +334,8 @@ SwDocShell::SwDocShell( const sal_uInt64 i_nSfxCreationFlags ) :
pWrtShell( 0 ),
pOLEChildList( 0 ),
nUpdateDocMode(document::UpdateDocMode::ACCORDING_TO_CONFIG),
- bInUpdateFontList(false)
+ bInUpdateFontList(false),
+ bIsATemplate(false)
{
Init_Impl();
}