1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:58:13 +00:00

Window: Update coding style.

This commit is contained in:
Andreas Kling 2019-01-16 13:49:44 +01:00
parent 9dd29f9aa9
commit e655aebd70
6 changed files with 23 additions and 40 deletions

View file

@ -63,8 +63,8 @@ int Process::gui$create_window(const GUI_CreateWindowParameters* user_params)
if (!window)
return -ENOMEM;
window->setTitle(params.title);
window->setRect(rect);
window->set_title(params.title);
window->set_rect(rect);
m_windows.set(window_id, move(window));
dbgprintf("%s<%u> gui$create_window: %d with rect {%d,%d %dx%d}\n", name().characters(), pid(), window_id, rect.x(), rect.y(), rect.width(), rect.height());