1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:07:44 +00:00

CEventLoop: Devirtualize take_pending_events_from(CEventLoop)

This commit is contained in:
Andreas Kling 2019-08-02 13:50:16 +02:00
parent 0b94f9c236
commit 3f91d2d0cc

View file

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