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

HexEditor: Replace DeprecatedString in FindDialog

This commit is contained in:
kamp 2023-08-14 21:12:42 +03:00 committed by Andrew Kaster
parent f38cf0ca18
commit 81afa029ac
3 changed files with 16 additions and 15 deletions

View file

@ -46,7 +46,7 @@ private:
DeprecatedString m_extension;
int m_goto_history { 0 };
DeprecatedString m_search_text;
String m_search_text;
ByteBuffer m_search_buffer;
int last_found_index() const { return m_last_found_index == -1 ? 0 : m_last_found_index; }
int m_last_found_index { -1 };