1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:47:35 +00:00

HexEditor: Replace DeprecatedString in GoToOffsetDialog

This commit is contained in:
kamp 2023-08-13 20:16:49 +03:00 committed by Andrew Kaster
parent b4fe118dff
commit f38cf0ca18
2 changed files with 14 additions and 14 deletions

View file

@ -24,8 +24,8 @@ private:
int calculate_new_offset(int offset);
int m_selection_offset { 0 };
int m_buffer_size { 0 };
Vector<DeprecatedString> m_offset_type;
Vector<DeprecatedString> m_offset_from;
Vector<StringView> m_offset_type;
Vector<StringView> m_offset_from;
RefPtr<GUI::TextEditor> m_text_editor;
RefPtr<GUI::Button> m_go_button;