1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00: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

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 };