diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-23 09:24:40 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-23 09:40:06 +0100 |
commit | e7e3e27f1d88671e9c9697ad2dbc61883b617223 (patch) | |
tree | 31fa5d4ced6a79609fcc2a07ded1e36c277c61d3 /sw | |
parent | a774c46673f6856e5d0c799b630954cf11de0935 (diff) |
coverity#708519 Uninitialized scalar field
Change-Id: Ib412af73771dd49967a4ef638b2b0e3b4df8b86d
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/uibase/dochdl/swdtflvr.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sw/source/core/uibase/dochdl/swdtflvr.cxx b/sw/source/core/uibase/dochdl/swdtflvr.cxx index c8f1cd5b2e6f..0a99bc249f94 100644 --- a/sw/source/core/uibase/dochdl/swdtflvr.cxx +++ b/sw/source/core/uibase/dochdl/swdtflvr.cxx @@ -3579,8 +3579,11 @@ SwTransferable* SwTransferable::GetSwTransferable( const TransferableDataHelper& } SwTrnsfrDdeLink::SwTrnsfrDdeLink( SwTransferable& rTrans, SwWrtShell& rSh ) - : rTrnsfr( rTrans ), pDocShell( 0 ), - bDelBookmrk( sal_False ), bInDisconnect( sal_False ) + : rTrnsfr(rTrans) + , pDocShell(0) + , nOldTimeOut(0) + , bDelBookmrk(false) + , bInDisconnect(false) { // we only end up here with table- or text selection if( nsSelectionType::SEL_TBL_CELLS & rSh.GetSelectionType() ) |