AK: Rename Vector::append(Vector) => Vector::extend(Vector)

Let's make it a bit more clear when we're appending the elements from
one vector to the end of another vector.
This commit is contained in:
Andreas Kling 2021-06-12 13:24:45 +02:00
commit dc65f54c06
Notes: sideshowbarker 2024-07-18 12:22:18 +09:00
37 changed files with 103 additions and 104 deletions

View file

@ -58,7 +58,7 @@ public:
void take_pending_events_from(EventLoop& other)
{
m_queued_events.append(move(other.m_queued_events));
m_queued_events.extend(move(other.m_queued_events));
}
static void wake();