Skip to content

Commit

Permalink
Profiler: Rename from ProfileViewer :^)
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Jul 1, 2020
1 parent 392b055 commit 8661af9
Show file tree
Hide file tree
Showing 12 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DevTools/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
add_subdirectory(HackStudio)
add_subdirectory(Inspector)
add_subdirectory(ProfileViewer)
add_subdirectory(Profiler)
add_subdirectory(VisualBuilder)
Original file line number Diff line number Diff line change
Expand Up @@ -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)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -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>();
Expand All @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion Meta/build-root-filesystem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8661af9

Please sign in to comment.