summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-03 12:55:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-03 14:24:03 +0200
commitca4701fec182d928ab3d39f2183dafecf90e430b (patch)
treed9570ccda0d3f20ca147c4f6607f3c35bf9500c5 /svtools
parent31d4562ca9e21f7b04960ac083765733e9a55118 (diff)
loplugin:unusedfields bIsMarked in SvTreeListEntry
write-only since GetIsMarked was removed in commit 06ea347b939895d3091ce747c26de58f4d4a766a "loplugin:unusedmethods svtools" which in was unused since introduced by commit b755fb8c0f6b1282f62c12f378c0a5ecac64d490 Author: Steve Yin <steve_y@apache.org> Date: Mon Nov 25 16:15:58 2013 +0000 Integrate branch of IAccessible2 Change-Id: I1342d4c020e53380f4c52fadcbf36ff520efaad4 Reviewed-on: https://gerrit.libreoffice.org/39470 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/contnr/treelistentry.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/svtools/source/contnr/treelistentry.cxx b/svtools/source/contnr/treelistentry.cxx
index 3e71eceac0f2..72436e9f5fa6 100644
--- a/svtools/source/contnr/treelistentry.cxx
+++ b/svtools/source/contnr/treelistentry.cxx
@@ -54,7 +54,6 @@ SvTreeListEntry::SvTreeListEntry()
: pParent(nullptr)
, nAbsPos(0)
, nListPos(0)
- , bIsMarked(false)
, pUserData(nullptr)
, nEntryFlags(SvTLEntryFlags::NONE)
, maBackColor(Application::GetSettings().GetStyleSettings().GetWindowColor())
@@ -65,7 +64,6 @@ SvTreeListEntry::SvTreeListEntry(const SvTreeListEntry& r)
: pParent(nullptr)
, nAbsPos(r.nAbsPos)
, nListPos(r.nListPos & 0x7FFFFFFF)
- , bIsMarked(r.bIsMarked)
, pUserData(r.pUserData)
, nEntryFlags(r.nEntryFlags)
, maBackColor(Application::GetSettings().GetStyleSettings().GetWindowColor())