diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2021-02-24 16:23:56 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-25 08:08:26 +0100 |
commit | 4ebfdfdc055d03cbde648626e5bc69433494e96f (patch) | |
tree | e414aaaa823f88a50ca53a7b6638259c049e2f0b /Userland/Applications/HexEditor | |
parent | 42717b5b794fa218bf63e9e0ec0c6c452e904ba3 (diff) | |
download | serenity-4ebfdfdc055d03cbde648626e5bc69433494e96f.zip |
Base: Update some icons for color, quality and consistency
And remove unused filetypes
Diffstat (limited to 'Userland/Applications/HexEditor')
-rw-r--r-- | Userland/Applications/HexEditor/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Userland/Applications/HexEditor/HexEditorWidget.cpp | 2 | ||||
-rw-r--r-- | Userland/Applications/HexEditor/main.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Applications/HexEditor/CMakeLists.txt b/Userland/Applications/HexEditor/CMakeLists.txt index 496bb25a38..fd8ed78cfd 100644 --- a/Userland/Applications/HexEditor/CMakeLists.txt +++ b/Userland/Applications/HexEditor/CMakeLists.txt @@ -5,5 +5,5 @@ set(SOURCES main.cpp ) -serenity_app(HexEditor ICON app-hexeditor) +serenity_app(HexEditor ICON app-hex-editor) target_link_libraries(HexEditor LibGUI) diff --git a/Userland/Applications/HexEditor/HexEditorWidget.cpp b/Userland/Applications/HexEditor/HexEditorWidget.cpp index 40d0f2aa97..f525134297 100644 --- a/Userland/Applications/HexEditor/HexEditorWidget.cpp +++ b/Userland/Applications/HexEditor/HexEditorWidget.cpp @@ -227,7 +227,7 @@ HexEditorWidget::HexEditorWidget() })); auto& help_menu = menubar->add_menu("Help"); - help_menu.add_action(GUI::CommonActions::make_about_action("Hex Editor", GUI::Icon::default_icon("app-hexeditor"), window())); + help_menu.add_action(GUI::CommonActions::make_about_action("Hex Editor", GUI::Icon::default_icon("app-hex-editor"), window())); GUI::Application::the()->set_menubar(move(menubar)); diff --git a/Userland/Applications/HexEditor/main.cpp b/Userland/Applications/HexEditor/main.cpp index dc5efa49ad..e8389645ef 100644 --- a/Userland/Applications/HexEditor/main.cpp +++ b/Userland/Applications/HexEditor/main.cpp @@ -43,7 +43,7 @@ int main(int argc, char** argv) return 1; } - auto app_icon = GUI::Icon::default_icon("app-hexeditor"); + auto app_icon = GUI::Icon::default_icon("app-hex-editor"); auto window = GUI::Window::construct(); window->set_title("Hex Editor"); |