diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-07-07 15:09:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-07-07 15:37:09 +0100 |
commit | e057560229d664bcd0ad71ea9ed2352283cd6e21 (patch) | |
tree | 84f805055c53dafae47ad6e6645394488e719b28 /include/vcl/floatwin.hxx | |
parent | d5165e37480ef322474f617d6450f233b478c8a9 (diff) |
FloatWinPopupFlags::NoMouseClose is not used
Change-Id: Idc96f005ca17d17bb302d1af4d52e188fd908cd3
Diffstat (limited to 'include/vcl/floatwin.hxx')
-rw-r--r-- | include/vcl/floatwin.hxx | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/include/vcl/floatwin.hxx b/include/vcl/floatwin.hxx index d33b7368c372..6617968d7ea5 100644 --- a/include/vcl/floatwin.hxx +++ b/include/vcl/floatwin.hxx @@ -37,18 +37,17 @@ enum class FloatWinPopupFlags Left = 0x000008, Right = 0x000010, NoKeyClose = 0x000020, - NoMouseClose = 0x000040, - NoMouseRectClose = 0x000080, - AllMouseButtonClose = 0x000100, - NoAppFocusClose = 0x000200, - NewLevel = 0x000400, - NoMouseUpClose = 0x000800, - GrabFocus = 0x001000, - NoHorzPlacement = 0x002000, + NoMouseRectClose = 0x000040, + AllMouseButtonClose = 0x000080, + NoAppFocusClose = 0x000100, + NewLevel = 0x000200, + NoMouseUpClose = 0x000400, + GrabFocus = 0x000800, + NoHorzPlacement = 0x001000, }; namespace o3tl { - template<> struct typed_flags<FloatWinPopupFlags> : is_typed_flags<FloatWinPopupFlags, 0x003fff> {}; + template<> struct typed_flags<FloatWinPopupFlags> : is_typed_flags<FloatWinPopupFlags, 0x001fff> {}; } enum class FloatWinPopupEndFlags |