diff --git a/Libraries/LibCore/CEventLoop.h b/Libraries/LibCore/CEventLoop.h index 7939a83f99..41cb35bc36 100644 --- a/Libraries/LibCore/CEventLoop.h +++ b/Libraries/LibCore/CEventLoop.h @@ -45,7 +45,7 @@ public: void quit(int); - virtual void take_pending_events_from(CEventLoop& other) + void take_pending_events_from(CEventLoop& other) { m_queued_events.append(move(other.m_queued_events)); }