From 3f91d2d0ccb1174adbc645e37013fc4a0bd93929 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 2 Aug 2019 13:50:16 +0200 Subject: [PATCH] CEventLoop: Devirtualize take_pending_events_from(CEventLoop) --- Libraries/LibCore/CEventLoop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); }