summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-11-16 19:57:36 +0000
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-17 13:51:07 +0100
commit1ee42f427fc80a4f3a63ee9fffbf9d187f1253ba (patch)
tree593d0508641022e675b70ba60135f5633ed4727b /include
parentbc1407317f1488fd4467422552e85a2966af939a (diff)
drop unused SvTreeListBoxFlags::IS_EXPANDING
Change-Id: I60ecf3b157cad3ebc58b6349690eccc0fedbd26a Reviewed-on: https://gerrit.libreoffice.org/63482 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/treelistbox.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/vcl/treelistbox.hxx b/include/vcl/treelistbox.hxx
index 36dd643eb473..5e7787b9ab88 100644
--- a/include/vcl/treelistbox.hxx
+++ b/include/vcl/treelistbox.hxx
@@ -180,14 +180,13 @@ enum class SvTreeListBoxFlags
NONE = 0x0000,
IN_EDT = 0x0001,
EDT_ENABLED = 0x0002,
- IS_EXPANDING = 0x0004,
- IS_TRAVELSELECT = 0x0008,
- TARGEMPH_VIS = 0x0010,
- EDTEND_CALLED = 0x0020,
+ IS_TRAVELSELECT = 0x0004,
+ TARGEMPH_VIS = 0x0008,
+ EDTEND_CALLED = 0x0010,
};
namespace o3tl
{
- template<> struct typed_flags<SvTreeListBoxFlags> : is_typed_flags<SvTreeListBoxFlags, 0x003f> {};
+ template<> struct typed_flags<SvTreeListBoxFlags> : is_typed_flags<SvTreeListBoxFlags, 0x001f> {};
}
struct SvTreeListBoxImpl;