summaryrefslogtreecommitdiff
path: root/include/vcl/floatwin.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-07-07 14:57:52 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-07-07 15:37:09 +0100
commit0b976716e3040bed9d53f4b14397d06affa464b2 (patch)
tree3c06399c09780c51deee443250cd8ac6b99709fe /include/vcl/floatwin.hxx
parentb67bcaa6d4cc098de58e18d31a04801a832f9012 (diff)
FloatWinPopupFlags::AnimationSlide is never used
Change-Id: I5beb16f642184aac3ec0467fcaee14bfbb374b4f
Diffstat (limited to 'include/vcl/floatwin.hxx')
-rw-r--r--include/vcl/floatwin.hxx33
1 files changed, 16 insertions, 17 deletions
diff --git a/include/vcl/floatwin.hxx b/include/vcl/floatwin.hxx
index 5b82d30aadb3..5169303eb385 100644
--- a/include/vcl/floatwin.hxx
+++ b/include/vcl/floatwin.hxx
@@ -32,26 +32,25 @@ enum class FloatWinPopupFlags
{
NONE = 0x000000,
AllowTearOff = 0x000001,
- AnimationSlide = 0x000002,
- NoAutoArrange = 0x000004,
- NoAnimation = 0x000008,
- Down = 0x000010,
- Up = 0x000020,
- Left = 0x000040,
- Right = 0x000080,
- NoKeyClose = 0x000100,
- NoMouseClose = 0x000200,
- NoMouseRectClose = 0x000400,
- AllMouseButtonClose = 0x000800,
- NoAppFocusClose = 0x001000,
- NewLevel = 0x002000,
- NoMouseUpClose = 0x004000,
- GrabFocus = 0x008000,
- NoHorzPlacement = 0x010000,
+ NoAutoArrange = 0x000002,
+ NoAnimation = 0x000004,
+ Down = 0x000008,
+ Up = 0x000010,
+ Left = 0x000020,
+ Right = 0x000040,
+ NoKeyClose = 0x000080,
+ NoMouseClose = 0x000100,
+ NoMouseRectClose = 0x000200,
+ AllMouseButtonClose = 0x000400,
+ NoAppFocusClose = 0x000800,
+ NewLevel = 0x001000,
+ NoMouseUpClose = 0x002000,
+ GrabFocus = 0x004000,
+ NoHorzPlacement = 0x008000,
};
namespace o3tl
{
- template<> struct typed_flags<FloatWinPopupFlags> : is_typed_flags<FloatWinPopupFlags, 0x01ffff> {};
+ template<> struct typed_flags<FloatWinPopupFlags> : is_typed_flags<FloatWinPopupFlags, 0x00ffff> {};
}
enum class FloatWinPopupEndFlags