1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09:00

WindowServer: Remove unused WSMessage::is_paint_event().

This commit is contained in:
Andreas Kling 2019-01-26 05:49:04 +01:00
parent 9fa8d4e22f
commit f34c0e414b
Notes: sideshowbarker 2024-07-19 15:56:28 +09:00

View file

@ -31,7 +31,6 @@ public:
bool is_mouse_event() const { return m_type == MouseMove || m_type == MouseDown || m_type == MouseUp; }
bool is_key_event() const { return m_type == KeyUp || m_type == KeyDown; }
bool is_paint_event() const { return m_type == WM_ClientWantsToPaint; }
private:
Type m_type { Invalid };