1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 13:07:46 +00:00

HexEditor: Construct Find dialog from GML

This commit is contained in:
Brendan Coles 2021-05-25 11:22:05 +00:00 committed by Linus Groh
parent 7997c02b6c
commit 16094baffc
4 changed files with 65 additions and 25 deletions

View file

@ -1,5 +1,6 @@
compile_gml(HexEditorWindow.gml HexEditorWindowGML.h hex_editor_window_gml)
compile_gml(GoToOffsetDialog.gml GoToOffsetDialogGML.h go_to_offset_dialog_gml)
compile_gml(FindDialog.gml FindDialogGML.h find_dialog_gml)
set(SOURCES
HexEditor.cpp
@ -7,6 +8,7 @@ set(SOURCES
FindDialog.cpp
GoToOffsetDialog.cpp
main.cpp
FindDialogGML.h
GoToOffsetDialogGML.h
HexEditorWindowGML.h
)