summaryrefslogtreecommitdiff
path: root/sw/source/filter/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-07-22 13:35:21 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-07-23 07:49:07 +0200
commitac933bb93a7afa8af10382cf2d47e64b31fe2567 (patch)
tree5be71688829ff360f1391c41adafd2405a5ee7ab /sw/source/filter/inc
parent4ad77ab737a00fd1325753592acca9ae00a838af (diff)
loplugin:unusedfields
Change-Id: If1e0b32f2cce7678f454009c0180d7612b4fb7c6 Reviewed-on: https://gerrit.libreoffice.org/76119 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/filter/inc')
-rw-r--r--sw/source/filter/inc/fltshell.hxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/sw/source/filter/inc/fltshell.hxx b/sw/source/filter/inc/fltshell.hxx
index 349e0d4034c4..d7991b096884 100644
--- a/sw/source/filter/inc/fltshell.hxx
+++ b/sw/source/filter/inc/fltshell.hxx
@@ -211,19 +211,15 @@ class SW_DLLPUBLIC SwFltRedline : public SfxPoolItem
{
public:
DateTime const aStamp;
- DateTime const aStampPrev;
- RedlineType const eType;
- RedlineType const eTypePrev;
+ RedlineType const eType;
std::size_t const nAutorNo;
SwFltRedline(RedlineType eType_,
std::size_t nAutorNo_,
- const DateTime& rStamp_,
- RedlineType eTypePrev_ = RedlineType::Insert)
+ const DateTime& rStamp_)
: SfxPoolItem(RES_FLTR_REDLINE), aStamp(rStamp_),
- aStampPrev( DateTime::EMPTY ),
eType(eType_),
- eTypePrev(eTypePrev_), nAutorNo(nAutorNo_)
+ nAutorNo(nAutorNo_)
{
}