summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/TextRange.h
AgeCommit message (Collapse)Author
2021-11-17AK: Convert AK::Format formatting helpers to returning ErrorOr<void>Andreas Kling
This isn't a complete conversion to ErrorOr<void>, but a good chunk. The end goal here is to propagate buffer allocation failures to the caller, and allow the use of TRY() with formatting functions.
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-03-12Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)Andreas Kling
Good-bye LogStream. Long live AK::Format!
2021-02-27LibGUI: Make empty TextRange invalidspeles
Having TextRange which is empty doesn't make any sense. So it confuses the functions that rely on having valid range, and causes them to do no action. Fixes #5341
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling