mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:47:34 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -37,14 +37,14 @@ class UnregisteredWidget final : public GUI::Widget {
|
|||
C_OBJECT(UnregisteredWidget);
|
||||
|
||||
private:
|
||||
UnregisteredWidget(const String& class_name);
|
||||
UnregisteredWidget(String const& class_name);
|
||||
|
||||
virtual void paint_event(GUI::PaintEvent& event) override;
|
||||
|
||||
String m_text;
|
||||
};
|
||||
|
||||
UnregisteredWidget::UnregisteredWidget(const String& class_name)
|
||||
UnregisteredWidget::UnregisteredWidget(String const& class_name)
|
||||
{
|
||||
StringBuilder builder;
|
||||
builder.append(class_name);
|
||||
|
@ -72,7 +72,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
|
||||
TRY(Core::System::pledge("stdio thread recvfd sendfd rpath cpath wpath"));
|
||||
|
||||
const char* path = nullptr;
|
||||
char const* path = nullptr;
|
||||
Core::ArgsParser args_parser;
|
||||
args_parser.add_positional_argument(path, "GML file to edit", "file", Core::ArgsParser::Required::No);
|
||||
args_parser.parse(arguments);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue