diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-20 14:26:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-21 11:13:52 +0200 |
commit | 95c348afa8f4f17c058c449ded75025175af0e4a (patch) | |
tree | 88f21ab151fbbf5c79e9adf4bae8dfb920c9e85a /svx/source/dialog/ctredlin.cxx | |
parent | 2149d4a88e9dc88c30e7475f8ea317e5c7b78529 (diff) |
loplugin:unusedfields in svx part2
Change-Id: Ie9fd55b71a152f428a397d9917918f0e9de39aaf
Reviewed-on: https://gerrit.libreoffice.org/39014
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/dialog/ctredlin.cxx')
-rw-r--r-- | svx/source/dialog/ctredlin.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/svx/source/dialog/ctredlin.cxx b/svx/source/dialog/ctredlin.cxx index 79bdc8465bc3..b84393490c6f 100644 --- a/svx/source/dialog/ctredlin.cxx +++ b/svx/source/dialog/ctredlin.cxx @@ -95,7 +95,6 @@ void SvLBoxColorString::Paint(const Point& rPos, SvTreeListBox& rDev, vcl::Rende SvxRedlinTable::SvxRedlinTable(SvSimpleTableContainer& rParent, WinBits nBits) : SvSimpleTable(rParent,nBits) - , bIsCalc(false) , nDatePos(WRITER_DATE) , bAuthor(false) , bDate(false) @@ -163,9 +162,9 @@ sal_Int32 SvxRedlinTable::ColCompare(SvTreeListEntry* pLeft,SvTreeListEntry* pRi return nCompare; } + void SvxRedlinTable::SetCalcView() { - bIsCalc=true; nDatePos=CALC_DATE; } |