summaryrefslogtreecommitdiff
path: root/include/vcl/floatwin.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-07-07 14:56:01 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-07-07 15:37:09 +0100
commitb67bcaa6d4cc098de58e18d31a04801a832f9012 (patch)
tree550a8652812f4767653c86ea56ad7a9f7d684e8c /include/vcl/floatwin.hxx
parent90cf31d8fefb46adc582bc2466fae15778f2cfd7 (diff)
FloatWinPopupFlags::NoFocusClose is only set, never read
Change-Id: Ide67b9279b626d3427c93891d27378ffd1f004cc
Diffstat (limited to 'include/vcl/floatwin.hxx')
-rw-r--r--include/vcl/floatwin.hxx21
1 files changed, 10 insertions, 11 deletions
diff --git a/include/vcl/floatwin.hxx b/include/vcl/floatwin.hxx
index d22602deac90..5b82d30aadb3 100644
--- a/include/vcl/floatwin.hxx
+++ b/include/vcl/floatwin.hxx
@@ -39,20 +39,19 @@ enum class FloatWinPopupFlags
Up = 0x000020,
Left = 0x000040,
Right = 0x000080,
- NoFocusClose = 0x000100,
- NoKeyClose = 0x000200,
- NoMouseClose = 0x000400,
- NoMouseRectClose = 0x000800,
- AllMouseButtonClose = 0x001000,
- NoAppFocusClose = 0x002000,
- NewLevel = 0x004000,
- NoMouseUpClose = 0x008000,
- GrabFocus = 0x010000,
- NoHorzPlacement = 0x020000,
+ NoKeyClose = 0x000100,
+ NoMouseClose = 0x000200,
+ NoMouseRectClose = 0x000400,
+ AllMouseButtonClose = 0x000800,
+ NoAppFocusClose = 0x001000,
+ NewLevel = 0x002000,
+ NoMouseUpClose = 0x004000,
+ GrabFocus = 0x008000,
+ NoHorzPlacement = 0x010000,
};
namespace o3tl
{
- template<> struct typed_flags<FloatWinPopupFlags> : is_typed_flags<FloatWinPopupFlags, 0x03ffff> {};
+ template<> struct typed_flags<FloatWinPopupFlags> : is_typed_flags<FloatWinPopupFlags, 0x01ffff> {};
}
enum class FloatWinPopupEndFlags