mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-14 10:20:36 +00:00
ProcessManager: Remove use of copy_ref().
This commit is contained in:
parent
6382c14faf
commit
a35dc10f54
Notes:
sideshowbarker
2024-07-19 13:19:27 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/a35dc10f54f
1 changed files with 3 additions and 3 deletions
|
@ -96,9 +96,9 @@ int main(int argc, char** argv)
|
|||
kill(pid, SIGCONT);
|
||||
});
|
||||
|
||||
toolbar->add_action(kill_action.copy_ref());
|
||||
toolbar->add_action(stop_action.copy_ref());
|
||||
toolbar->add_action(continue_action.copy_ref());
|
||||
toolbar->add_action(kill_action);
|
||||
toolbar->add_action(stop_action);
|
||||
toolbar->add_action(continue_action);
|
||||
|
||||
auto menubar = make<GMenuBar>();
|
||||
auto app_menu = make<GMenu>("Process Manager");
|
||||
|
|
Loading…
Reference in a new issue