summaryrefslogtreecommitdiff
path: root/Userland/Applications/HexEditor/FindDialog.cpp
AgeCommit message (Expand)Author
2023-02-13Userland: Set Button text using the new String classKarol Kosek
2023-02-13LibGUI+Userland: Add `_deprecated` suffix to AbstractButton::{set_,}textKarol Kosek
2023-01-07LibGUI+Userland: Rename `try_load_from_gml()` -> `load_from_gml()` :^)Sam Atkins
2023-01-07Userland: Replace all uses of `load_from_gml` with `try_load_from_gml`Sam Atkins
2023-01-06LibGUI+Everywhere: Use fallible Window::set_main_widget() everywhere :^)Sam Atkins
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-07-06AK: Use an enum instead of a bool for String::replace(all_occurences)DexesTTP
2022-06-02Userland: Use default buttons instead of manually handling return pressKarol Kosek
2022-05-13LibGUI+Userland: Make Dialog::ExecResult an enum classSam Atkins
2022-03-02Applications: Fix undefined behavior capturing non-static constexprLenny Maiorani
2022-02-28Applications: Change static constexpr variables to constexprLenny Maiorani
2022-02-14Applications: Use default constructors/destructorsLenny Maiorani
2022-01-28HexEditor: Use Array in FindDialog's optionskleines Filmröllchen
2022-01-24AK+Userland: Make AK::decode_hex() return ErrorOrSam Atkins
2021-09-11AK: Replace the mutable String::replace API with an immutable versionIdan Horowitz
2021-08-01Applications: Remove unused header includesBrian Gianforcaro
2021-05-27HexEditor: Add 'Find All' option to Find Dialog to find all matchesBrendan Coles
2021-05-25HexEditor: Construct Find dialog from GMLBrendan Coles
2021-05-22HexEditor: Fix typo: ASCIIBrendan Coles
2021-05-21Revert "Userland: static vs non-static constexpr variables"Linus Groh
2021-05-21Userland: static vs non-static constexpr variablesLenny Maiorani
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-01-24HexEditor: FindCamisul