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

HexEditor: Replace DeprecatedString in SearchResultsModel

Except one instance where it is required for interfacing with LibGUI

Also changed an instance of west const to east because the clang-format
commit hook required it.
This commit is contained in:
kamp 2023-08-16 00:54:43 +03:00 committed by Andrew Kaster
parent 81afa029ac
commit 4b87714700
2 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@
struct Match {
u64 offset;
DeprecatedString value;
String value;
};
class SearchResultsModel final : public GUI::Model {