diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-09-18 09:49:51 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-25 21:18:17 +0200 |
commit | ede5dbd7b3ec1c7240d6ca2693a5ada307338b4c (patch) | |
tree | ee3a79ccadd3eaacfe7da533c71cb401d8146695 /Libraries/LibGUI/Command.h | |
parent | 64cc3f51d0a1d4ddc68fe9e3b5da2834eac48dae (diff) | |
download | serenity-ede5dbd7b3ec1c7240d6ca2693a5ada307338b4c.zip |
Meta+LibC through LibHTTP: Make clang-format-10 clean
Why break at LibHTTP? Because "Meta+Libraries" would be insanely large,
and breaking between LibHTTP and LibJS makes the commits roughly evenly large.
Diffstat (limited to 'Libraries/LibGUI/Command.h')
-rw-r--r-- | Libraries/LibGUI/Command.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Libraries/LibGUI/Command.h b/Libraries/LibGUI/Command.h index 5bf13e1f75..9ff6a0aad9 100644 --- a/Libraries/LibGUI/Command.h +++ b/Libraries/LibGUI/Command.h @@ -34,13 +34,13 @@ class Command { public: virtual ~Command(); - virtual void undo() {} - virtual void redo() {} + virtual void undo() { } + virtual void redo() { } String action_text() const { return m_action_text; } protected: - Command() {} + Command() { } void set_action_text(const String& text) { m_action_text = text; } private: |