summaryrefslogtreecommitdiff
path: root/Userland/DevTools/Profiler/main.cpp
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-05-07 13:46:52 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-07 15:26:51 +0200
commit7b9cabb5a3371865324aacbf7648aa9cc4f655ce (patch)
treea4cb0ff8a8fc843c490572f396e624da475c59f6 /Userland/DevTools/Profiler/main.cpp
parent2d6091be10ba66a2939a1722d7b866442fc2bddc (diff)
downloadserenity-7b9cabb5a3371865324aacbf7648aa9cc4f655ce.zip
Profiler: Remove the old process selection widget
Diffstat (limited to 'Userland/DevTools/Profiler/main.cpp')
-rw-r--r--Userland/DevTools/Profiler/main.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/DevTools/Profiler/main.cpp b/Userland/DevTools/Profiler/main.cpp
index a49640e1ab..e675158dd8 100644
--- a/Userland/DevTools/Profiler/main.cpp
+++ b/Userland/DevTools/Profiler/main.cpp
@@ -5,7 +5,6 @@
*/
#include "IndividualSampleModel.h"
-#include "ProcessPickerWidget.h"
#include "Profile.h"
#include "TimelineContainer.h"
#include "TimelineHeader.h"
@@ -112,8 +111,6 @@ int main(int argc, char** argv)
[[maybe_unused]] auto& timeline_container = main_widget.add<TimelineContainer>(*timeline_header_container, *timeline_view);
- main_widget.add<ProcessPickerWidget>(*profile);
-
auto& tab_widget = main_widget.add<GUI::TabWidget>();
auto& tree_tab = tab_widget.add_tab<GUI::Widget>("Call Tree");