diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-15 20:41:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-16 11:23:12 +0100 |
commit | 2436eb539c5e3a4c53734d674192e1c4cd3defb9 (patch) | |
tree | 888e0a0c1685cf0f52de14bf7e92e89ae023e36e | |
parent | 3138b69c77fbee37af7d874a2bb03539d9229d69 (diff) |
coverity#1202919 Uninitialized scalar field
Change-Id: Ie316a5c03953f244baf69fc66d372ff4a032f34a
-rw-r--r-- | sw/source/core/uibase/app/docshini.cxx | 3 |
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(); } |