diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-23 15:14:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-26 15:44:49 +0100 |
commit | acfa3917ab2eb3d3efd45f319ec48e6ccb87c5dd (patch) | |
tree | a2d0efb4e9adbd52474918275fe173568acb6ab5 /include | |
parent | 4a59a8aba8c9d451edff790d9281d0095c1bd78e (diff) |
remove unused enum value SvTLEntryFlags::IN_USE
Change-Id: Ieb09d4d28cc2084da4660165a96561ee57d2420d
Reviewed-on: https://gerrit.libreoffice.org/64029
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/treelistentry.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/vcl/treelistentry.hxx b/include/vcl/treelistentry.hxx index b318bb3c440f..1cb234c7c98a 100644 --- a/include/vcl/treelistentry.hxx +++ b/include/vcl/treelistentry.hxx @@ -35,16 +35,15 @@ enum class SvTLEntryFlags NONE = 0x0000, CHILDREN_ON_DEMAND = 0x0001, DISABLE_DROP = 0x0002, - IN_USE = 0x0004, // is set if RequestingChildren has not set any children - NO_NODEBMP = 0x0008, + NO_NODEBMP = 0x0004, // entry had or has children HAD_CHILDREN = 0x0010, SEMITRANSPARENT = 0x8000, // draw semi-transparent entry bitmaps }; namespace o3tl { - template<> struct typed_flags<SvTLEntryFlags> : is_typed_flags<SvTLEntryFlags, 0x801f> {}; + template<> struct typed_flags<SvTLEntryFlags> : is_typed_flags<SvTLEntryFlags, 0x8017> {}; } class VCL_DLLPUBLIC SvTreeListEntry @@ -104,7 +103,6 @@ public: void SetUserData( void* pPtr ); void EnableChildrenOnDemand( bool bEnable=true ); bool HasChildrenOnDemand() const; - bool HasInUseEmphasis() const; SvTLEntryFlags GetFlags() const { return nEntryFlags;} void SetFlags( SvTLEntryFlags nFlags ); |