mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 22:35:06 +00:00
Profiler: Rename from ProfileViewer :^)
This commit is contained in:
parent
392b055806
commit
8661af9b72
12 changed files with 6 additions and 6 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue