mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 13:19:05 +00:00
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:
parent
7e1bffdeb8
commit
dc65f54c06
Notes:
sideshowbarker
2024-07-18 12:22:18 +09:00
Author: https://github.com/awesomekling
Commit: dc65f54c06
37 changed files with 103 additions and 104 deletions
|
@ -380,7 +380,7 @@ void Window::handle_multi_paint_event(MultiPaintEvent& event)
|
|||
// It's possible that there had been some calls to update() that
|
||||
// haven't been flushed. We can handle these right now, avoiding
|
||||
// another round trip.
|
||||
rects.append(move(m_pending_paint_event_rects));
|
||||
rects.extend(move(m_pending_paint_event_rects));
|
||||
}
|
||||
VERIFY(!rects.is_empty());
|
||||
if (m_back_store && m_back_store->size() != event.window_size()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue