summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-15 20:41:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-16 11:23:12 +0100
commit2436eb539c5e3a4c53734d674192e1c4cd3defb9 (patch)
tree888e0a0c1685cf0f52de14bf7e92e89ae023e36e
parent3138b69c77fbee37af7d874a2bb03539d9229d69 (diff)
coverity#1202919 Uninitialized scalar field
Change-Id: Ie316a5c03953f244baf69fc66d372ff4a032f34a
-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 b9bf8502e679..8ea9c1efa3e7 100644
--- a/sw/source/core/uibase/app/docshini.cxx
+++ b/sw/source/core/uibase/app/docshini.cxx
@@ -320,7 +320,8 @@ SwDocShell::SwDocShell( SfxObjectCreateMode eMode ) :
pWrtShell( 0 ),
pOLEChildList( 0 ),
nUpdateDocMode(document::UpdateDocMode::ACCORDING_TO_CONFIG),
- bInUpdateFontList(false)
+ bInUpdateFontList(false),
+ bIsATemplate(false)
{
Init_Impl();
}