summaryrefslogtreecommitdiff
path: root/Userland/Applications/Spreadsheet/Workbook.h
AgeCommit message (Collapse)Author
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-01-20SpreadSheet: Use FileSystemAccessClient::try_* APIsMustafa Quraish
2022-01-15Spreadsheet: Use FileSystemAccessClient for the reading of filesGlenford Williams
2022-01-09Spreadsheet: Properly pass parent window to WorkbookGlenford Williams
Change the parent of the WizardDialog to that of the Spreadsheet window. Previously the WizardDialog was using the open file dialog as the parent resulting in the csv import dialog
2021-12-12Spreadsheet: Replace hacky JS VM configuration with a more correct oneAli Mohammad Pur
Now we give each sheet its own interpreter and realm, and only make them share the VM. This is to prepare for the next commit, which will be refactoring a bunch of things to propagate exceptions via ThrowCompletionOr<T>.
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
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-01-12Applications: Move to Userland/Applications/Andreas Kling