summaryrefslogtreecommitdiff
path: root/Userland/Applications/HexEditor
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/HexEditor')
-rw-r--r--Userland/Applications/HexEditor/CMakeLists.txt2
-rw-r--r--Userland/Applications/HexEditor/HexEditorWidget.cpp2
-rw-r--r--Userland/Applications/HexEditor/main.cpp2
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");