Brendan Coles
e569f7fd1c
Applications: Use application icons for dialog windows
2020-10-31 13:48:15 +01:00
Linus Groh
e7c53bee16
Spreadsheet: Fix rendering of documentation examples
...
s/String::format/String::formatted/ - the Markdown source was not being
formatted properly.
2020-10-10 00:53:09 +02:00
asynts
f005548d56
Spreadsheet: Use new format functions.
...
In a few places I also simplified a few format strings:
-outln("{} item{}", items, items.size() == 1 ? ' ' : 's');
+outln("{} item(s)", items);
In my opinion this is more readable and in some places it incorrectly
wrote '0 item' which is "fixed" now. In other places the placeholder
space looked weird.
2020-10-06 15:28:39 +02:00
Andreas Kling
6cf064e4c6
Spreadsheet: Open help pages immediately when selecting them
2020-08-28 13:56:26 +02:00
Andreas Kling
60cf97726f
Spreadsheet: Don't store help window's widgets in raw pointers
...
We can just use RefPtr for these and lighten the cognitive burden.
2020-08-28 13:56:19 +02:00
AnotherTest
682b2fdb75
LibWeb: Move OutOfProcessWebView into the Web namespace
2020-08-24 18:21:33 +02:00
AnotherTest
3a07f6e345
Spreadsheet: Document runtime functions and add a help window
...
...that can automatically generate documentation pages from the objects.
2020-08-24 18:21:33 +02:00