From d5165e37480ef322474f617d6450f233b478c8a9 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 7 Jul 2016 15:06:49 +0100 Subject: FloatWinPopupFlags::NoAnimation is not used Change-Id: I17645bbbe3c15fa9e807012f1fdcfc9364a21864 --- include/vcl/floatwin.hxx | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) (limited to 'include') diff --git a/include/vcl/floatwin.hxx b/include/vcl/floatwin.hxx index ba8cf93fdce3..d33b7368c372 100644 --- a/include/vcl/floatwin.hxx +++ b/include/vcl/floatwin.hxx @@ -32,24 +32,23 @@ enum class FloatWinPopupFlags { NONE = 0x000000, AllowTearOff = 0x000001, - NoAnimation = 0x000002, - Down = 0x000004, - Up = 0x000008, - Left = 0x000010, - Right = 0x000020, - NoKeyClose = 0x000040, - NoMouseClose = 0x000080, - NoMouseRectClose = 0x000100, - AllMouseButtonClose = 0x000200, - NoAppFocusClose = 0x000400, - NewLevel = 0x000800, - NoMouseUpClose = 0x001000, - GrabFocus = 0x002000, - NoHorzPlacement = 0x004000, + Down = 0x000002, + Up = 0x000004, + Left = 0x000008, + Right = 0x000010, + NoKeyClose = 0x000020, + NoMouseClose = 0x000040, + NoMouseRectClose = 0x000080, + AllMouseButtonClose = 0x000100, + NoAppFocusClose = 0x000200, + NewLevel = 0x000400, + NoMouseUpClose = 0x000800, + GrabFocus = 0x001000, + NoHorzPlacement = 0x002000, }; namespace o3tl { - template<> struct typed_flags : is_typed_flags {}; + template<> struct typed_flags : is_typed_flags {}; } enum class FloatWinPopupEndFlags -- cgit