mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 20:27:34 +00:00
Everywhere: Remove needless trailing semi-colons after functions
This is a new option in clang-format-16.
This commit is contained in:
parent
aff81d318b
commit
c911781c21
243 changed files with 483 additions and 481 deletions
|
@ -16,7 +16,7 @@ class NotificationWindow final : public GUI::Window {
|
|||
|
||||
public:
|
||||
virtual ~NotificationWindow() override = default;
|
||||
void set_original_rect(Gfx::IntRect original_rect) { m_original_rect = original_rect; };
|
||||
void set_original_rect(Gfx::IntRect original_rect) { m_original_rect = original_rect; }
|
||||
|
||||
void set_text(DeprecatedString const&);
|
||||
void set_title(DeprecatedString const&);
|
||||
|
|
|
@ -25,10 +25,10 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
Message::Type type() const { return m_type; };
|
||||
u32 data_size() const { return m_data_size; };
|
||||
u32 protocol_version() const { return m_protocol_version; };
|
||||
u64 opaque() const { return m_opaque; };
|
||||
Message::Type type() const { return m_type; }
|
||||
u32 data_size() const { return m_data_size; }
|
||||
u32 protocol_version() const { return m_protocol_version; }
|
||||
u64 opaque() const { return m_opaque; }
|
||||
|
||||
private:
|
||||
// The protocol version being used.
|
||||
|
|
|
@ -58,5 +58,5 @@ struct Command {
|
|||
}
|
||||
|
||||
return builder.to_deprecated_string();
|
||||
};
|
||||
}
|
||||
};
|
||||
|
|
|
@ -109,7 +109,7 @@ public:
|
|||
void redraw(MenuItem const&);
|
||||
|
||||
MenuItem* hovered_item() const;
|
||||
int hovered_item_index() const { return m_hovered_item_index; };
|
||||
int hovered_item_index() const { return m_hovered_item_index; }
|
||||
|
||||
void set_hovered_index(int index, bool make_input = false);
|
||||
|
||||
|
|
|
@ -193,7 +193,7 @@ public:
|
|||
if (active_window() && active_window()->is_fullscreen())
|
||||
return active_window();
|
||||
return nullptr;
|
||||
};
|
||||
}
|
||||
|
||||
Window* active_fullscreen_window()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue