Utilities: Read positional arguments as Strings not char*s

This is a pretty trivial change so they're all batched together.
This commit is contained in:
Sam Atkins 2022-04-02 16:48:05 +01:00 committed by Andreas Kling
commit f0aba519c3
Notes: sideshowbarker 2024-07-17 12:05:16 +09:00
18 changed files with 46 additions and 52 deletions

View file

@ -25,7 +25,7 @@ struct Options {
static Options parse_options(Main::Arguments arguments)
{
char const* type = "text/plain";
Vector<char const*> text;
Vector<String> text;
bool clear = false;
Core::ArgsParser args_parser;