diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-12 15:53:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-12 18:45:50 +0200 |
commit | 0fda7285144fcadd16cc02bf7ecaad20b7d5b971 (patch) | |
tree | 667954c4e45e704a1e63370a97a27cd365697afd /sc | |
parent | 6d235b1a87c281389daad6e4c653e75810e749a8 (diff) |
loplugin:unusedfields
Change-Id: I487ff0211fc1b894950bedc72cd8444c7da36ace
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118781
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/cctrl/checklistmenu.cxx | 1 | ||||
-rw-r--r-- | sc/source/ui/inc/checklistmenu.hxx | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/sc/source/ui/cctrl/checklistmenu.cxx b/sc/source/ui/cctrl/checklistmenu.cxx index 275873be1f32..4b8ce2e4e114 100644 --- a/sc/source/ui/cctrl/checklistmenu.cxx +++ b/sc/source/ui/cctrl/checklistmenu.cxx @@ -424,7 +424,6 @@ ScCheckListMember::ScCheckListMember() , mbDate(false) , mbLeaf(false) , mbValue(false) - , mbDuplicated(false) , meDatePartType(YEAR) { } diff --git a/sc/source/ui/inc/checklistmenu.hxx b/sc/source/ui/inc/checklistmenu.hxx index 7ebb95fb0caf..4f6cfca68b92 100644 --- a/sc/source/ui/inc/checklistmenu.hxx +++ b/sc/source/ui/inc/checklistmenu.hxx @@ -40,7 +40,6 @@ struct ScCheckListMember bool mbDate; bool mbLeaf; bool mbValue; // true if the filter condition is value - bool mbDuplicated; // true if there were duplicated values in the filter list DatePartType meDatePartType; // To store Year and Month if the member if DAY type std::vector<OUString> maDateParts; |