summaryrefslogtreecommitdiff
path: root/DevTools/Profiler/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'DevTools/Profiler/main.cpp')
-rw-r--r--DevTools/Profiler/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/DevTools/Profiler/main.cpp b/DevTools/Profiler/main.cpp
index 20fbe4fb5c..2b0be42a15 100644
--- a/DevTools/Profiler/main.cpp
+++ b/DevTools/Profiler/main.cpp
@@ -144,11 +144,11 @@ bool prompt_to_stop_profiling()
auto& stop_button = widget.add<GUI::Button>("Stop");
stop_button.on_click = [&](auto) {
- GUI::Application::the().quit();
+ GUI::Application::the()->quit();
};
window->show();
- return GUI::Application::the().exec() == 0;
+ return GUI::Application::the()->exec() == 0;
}
bool generate_profile(pid_t pid)