summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-12-09 09:11:58 +0000
committerCaolán McNamara <caolanm@redhat.com>2020-12-09 11:57:12 +0100
commit3c5a084d95e370ce671efc5848f65169b0fdfe2e (patch)
tree1aab16c116cd69e60318413a4d5c131b488842bb /sw
parent95765493c81e9ee4482638ded3e28f68c14cc83e (diff)
uninit_member
Change-Id: Idd42a139dabf74ee20afa8b6fb3c9ec25c7b0b19 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107389 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/uibase/dochdl/swdtflvr.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/source/uibase/dochdl/swdtflvr.cxx b/sw/source/uibase/dochdl/swdtflvr.cxx
index 9fa684a1b0fc..a8fc9344d944 100644
--- a/sw/source/uibase/dochdl/swdtflvr.cxx
+++ b/sw/source/uibase/dochdl/swdtflvr.cxx
@@ -244,7 +244,9 @@ SwTransferable::SwTransferable( SwWrtShell& rSh )
: m_pWrtShell( &rSh ),
m_pCreatorView( nullptr ),
m_pOrigGraphic( nullptr ),
- m_eBufferType( TransferBufferType::NONE )
+ m_eBufferType( TransferBufferType::NONE ),
+ m_bOldIdle(false),
+ m_bCleanUp(false)
{
rSh.GetView().AddTransferable(*this);
SwDocShell* pDShell = rSh.GetDoc()->GetDocShell();