diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-16 13:49:44 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-16 13:50:24 +0100 |
commit | e655aebd70bb7d248c2f7be4a12d695ceec707a5 (patch) | |
tree | 4c29c1df8cc670c83cd4125528c9e972cc5f8313 /Kernel/ProcessGUI.cpp | |
parent | 9dd29f9aa97260c46e28ea40b987e3afb65c7251 (diff) | |
download | serenity-e655aebd70bb7d248c2f7be4a12d695ceec707a5.zip |
Window: Update coding style.
Diffstat (limited to 'Kernel/ProcessGUI.cpp')
-rw-r--r-- | Kernel/ProcessGUI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/ProcessGUI.cpp b/Kernel/ProcessGUI.cpp index f4ba4748d8..6801a9e86b 100644 --- a/Kernel/ProcessGUI.cpp +++ b/Kernel/ProcessGUI.cpp @@ -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()); |