diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-07-08 15:41:58 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-07-08 16:43:41 +0100 |
commit | d79ab5dc5824de2b00c14c66af339761bde9e9fc (patch) | |
tree | 3f1d4b3dc4eaf5af07fff6e646726b4b5548b7e7 /include | |
parent | af8c151f0af0aca74d6bde7132fae4098064d02f (diff) |
DialogControlFlags::Mod1Tab is never set
Change-Id: If681e1f296934c7e20934b0e000a3288f989ed35
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/window.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index e4f13771c2f7..923fc7744fad 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -393,12 +393,11 @@ enum class DialogControlFlags NONE = 0x0000, Return = 0x0001, WantFocus = 0x0002, - Mod1Tab = 0x0004, - FloatWinPopupModeEndCancel = 0x0008, + FloatWinPopupModeEndCancel = 0x0004, }; namespace o3tl { - template<> struct typed_flags<DialogControlFlags> : is_typed_flags<DialogControlFlags, 0x000f> {}; + template<> struct typed_flags<DialogControlFlags> : is_typed_flags<DialogControlFlags, 0x0007> {}; } // EndExtTextInput() Flags |