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
Notes: sideshowbarker 2024-07-19 12:56:27 +09:00

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