diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-03 13:10:00 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-03 16:03:34 +0200 |
commit | e037381f85413fe6329c54e49ccfcac88dd71048 (patch) | |
tree | 78bce79b46f2f5415d70214555ceccc84897dfbf /sot | |
parent | ca4701fec182d928ab3d39f2183dafecf90e430b (diff) |
loplugin:unusedfields in slideshow..svtools
Change-Id: I74d5a4b8cfc4b18267f99648a3112b163c91fd8c
Reviewed-on: https://gerrit.libreoffice.org/39474
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sot')
-rw-r--r-- | sot/source/sdstor/stgdir.cxx | 4 | ||||
-rw-r--r-- | sot/source/sdstor/stgdir.hxx | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/sot/source/sdstor/stgdir.cxx b/sot/source/sdstor/stgdir.cxx index 0af9b5ada18d..6e85777b1daa 100644 --- a/sot/source/sdstor/stgdir.cxx +++ b/sot/source/sdstor/stgdir.cxx @@ -76,8 +76,6 @@ void StgDirEntry::InitMembers() m_nMode = StreamMode::READ; m_bDirect = true; m_bInvalid = - m_bCreated = - m_bRenamed = m_bRemoved = m_bTemp = m_bDirty = @@ -959,7 +957,6 @@ StgDirEntry* StgDirStrm::Create( StgDirEntry& rStg, const OUString& rName, StgEn pRes->m_bInvalid = pRes->m_bRemoved = pRes->m_bTemp = false; - pRes->m_bCreated = pRes->m_bDirty = true; } else @@ -968,7 +965,6 @@ StgDirEntry* StgDirStrm::Create( StgDirEntry& rStg, const OUString& rName, StgEn if( StgAvlNode::Insert( reinterpret_cast<StgAvlNode**>(&rStg.m_pDown), pRes ) ) { pRes->m_pUp = &rStg; - pRes->m_bCreated = pRes->m_bDirty = true; } else diff --git a/sot/source/sdstor/stgdir.hxx b/sot/source/sdstor/stgdir.hxx index 5809703602dd..b4f1a763bf8b 100644 --- a/sot/source/sdstor/stgdir.hxx +++ b/sot/source/sdstor/stgdir.hxx @@ -43,9 +43,7 @@ class StgDirEntry : public StgAvlNode sal_Int32 m_nEntry; // entry # in TOC stream (temp) sal_Int32 m_nPos; // current position bool m_bDirty; // dirty directory entry - bool m_bCreated; // newly created entry bool m_bRemoved; // removed per Invalidate() - bool m_bRenamed; // renamed void InitMembers(); // ctor helper virtual short Compare( const StgAvlNode* ) const override; bool StoreStream( StgIo& ); // store the stream |