diff options
Diffstat (limited to 'chrome/views/event.h')
-rw-r--r-- | chrome/views/event.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/chrome/views/event.h b/chrome/views/event.h index 6a6501e..35ebfbe 100644 --- a/chrome/views/event.h +++ b/chrome/views/event.h @@ -156,10 +156,7 @@ class LocatedEvent : public Event { class MouseEvent : public LocatedEvent { public: // Flags specific to mouse events - enum MouseEventFlags { - EF_IS_DOUBLE_CLICK = 1 << 16, - EF_IS_NON_CLIENT = 1 << 17 - }; + enum MouseEventFlags { EF_IS_DOUBLE_CLICK = 1 << 16 }; // Create a new mouse event MouseEvent(EventType type, int x, int y, int flags) |