summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-15 20:40:44 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-16 11:23:12 +0100
commit3138b69c77fbee37af7d874a2bb03539d9229d69 (patch)
treeb2714bb1d8fb34fd27105489892c84e40b4bab54
parent2c964860c1393814e045996a0e0fc139e5d7ca30 (diff)
coverity#1202920 Uninitialized scalar field
Change-Id: I054c0ceea35c469cff7d85e892037a3ff2c43a7b
-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 7da150f9ac9f..b9bf8502e679 100644
--- a/sw/source/core/uibase/app/docshini.cxx
+++ b/sw/source/core/uibase/app/docshini.cxx
@@ -349,7 +349,8 @@ SwDocShell::SwDocShell( SwDoc *pD, SfxObjectCreateMode eMode ):
pWrtShell( 0 ),
pOLEChildList( 0 ),
nUpdateDocMode(document::UpdateDocMode::ACCORDING_TO_CONFIG),
- bInUpdateFontList(false)
+ bInUpdateFontList(false),
+ bIsATemplate(false)
{
Init_Impl();
}