summaryrefslogtreecommitdiff
path: root/include/vcl/window.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-23 15:07:09 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-26 14:07:48 +0100
commit12d0c06703842754de1eee4c1ea4f5796429730b (patch)
tree9fdde46d865e2014fe7d969a2c4f9af2e1e68570 /include/vcl/window.hxx
parentea72ad4474789af1532fd49677158f62ba8e2543 (diff)
remove unused enum value TrackingEventFlags::DontCallHdl
Change-Id: I75b28d20e2e0954fbd2fee396b8e06e9bb7d7073 Reviewed-on: https://gerrit.libreoffice.org/64028 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/window.hxx')
-rw-r--r--include/vcl/window.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx
index 8afd84688523..60389e836aa9 100644
--- a/include/vcl/window.hxx
+++ b/include/vcl/window.hxx
@@ -118,11 +118,10 @@ enum class TrackingEventFlags
Focus = 0x0004,
Repeat = 0x0100,
End = 0x1000,
- DontCallHdl = 0x8000,
};
namespace o3tl
{
- template<> struct typed_flags<TrackingEventFlags> : is_typed_flags<TrackingEventFlags, 0x9107> {};
+ template<> struct typed_flags<TrackingEventFlags> : is_typed_flags<TrackingEventFlags, 0x1107> {};
}