mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
Profiler: Rename from ProfileViewer :^)
This commit is contained in:
parent
392b055806
commit
8661af9b72
Notes:
sideshowbarker
2024-07-19 05:14:19 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/8661af9b723
@ -1,4 +1,4 @@
|
||||
add_subdirectory(HackStudio)
|
||||
add_subdirectory(Inspector)
|
||||
add_subdirectory(ProfileViewer)
|
||||
add_subdirectory(Profiler)
|
||||
add_subdirectory(VisualBuilder)
|
||||
|
@ -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)
|
@ -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");
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user