Profiler: Rename from ProfileViewer :^)

This commit is contained in:
Andreas Kling 2020-07-01 19:43:17 +02:00
parent 392b055806
commit 8661af9b72
Notes: sideshowbarker 2024-07-19 05:14:19 +09:00
12 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
add_subdirectory(HackStudio)
add_subdirectory(Inspector)
add_subdirectory(ProfileViewer)
add_subdirectory(Profiler)
add_subdirectory(VisualBuilder)

View File

@ -6,5 +6,5 @@ set(SOURCES
ProfileTimelineWidget.cpp
)
serenity_bin(ProfileViewer)
target_link_libraries(ProfileViewer LibGUI LibX86)
serenity_bin(Profiler)
target_link_libraries(Profiler LibGUI LibX86)

View File

@ -56,7 +56,7 @@ int main(int argc, char** argv)
GUI::Application app(argc, argv);
auto window = GUI::Window::construct();
window->set_title("ProfileViewer");
window->set_title("Profiler");
window->set_rect(100, 100, 800, 600);
auto& main_widget = window->set_main_widget<GUI::Widget>();
@ -79,7 +79,7 @@ int main(int argc, char** argv)
};
auto menubar = GUI::MenuBar::construct();
auto& app_menu = menubar->add_menu("ProfileViewer");
auto& app_menu = menubar->add_menu("Profiler");
app_menu.add_action(GUI::CommonActions::make_quit_action([&](auto&) { app.quit(); }));
auto& view_menu = menubar->add_menu("View");

View File

@ -159,7 +159,7 @@ ln -s Browser mnt/bin/br
ln -s HackStudio mnt/bin/hs
ln -s Debugger mnt/bin/sdb
ln -s SystemMonitor mnt/bin/sm
ln -s ProfileViewer mnt/bin/pv
ln -s Profiler mnt/bin/pv
ln -s WebServer mnt/bin/ws
ln -s Solitaire mnt/bin/sl
ln -s WebView mnt/bin/wv