mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 10:36:02 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
Notes:
sideshowbarker
2024-07-17 16:21:09 +09:00
Author: https://github.com/IdanHo
Commit: 086969277e
Pull-request: https://github.com/SerenityOS/serenity/pull/12321
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/bgianfo ✅
1665 changed files with 8479 additions and 8479 deletions
|
@ -23,13 +23,13 @@ public:
|
|||
void add_applet(Window& applet);
|
||||
void remove_applet(Window& applet);
|
||||
void draw();
|
||||
void invalidate_applet(const Window& applet, const Gfx::IntRect& rect);
|
||||
void invalidate_applet(Window const& applet, Gfx::IntRect const& rect);
|
||||
void relayout();
|
||||
|
||||
void set_position(const Gfx::IntPoint&);
|
||||
void set_position(Gfx::IntPoint const&);
|
||||
|
||||
Window* window() { return m_window; }
|
||||
const Window* window() const { return m_window; }
|
||||
Window const* window() const { return m_window; }
|
||||
|
||||
void did_change_theme();
|
||||
|
||||
|
@ -37,7 +37,7 @@ private:
|
|||
AppletManager();
|
||||
|
||||
void repaint();
|
||||
void draw_applet(const Window& applet);
|
||||
void draw_applet(Window const& applet);
|
||||
void set_hovered_applet(Window*);
|
||||
|
||||
Vector<WeakPtr<Window>> m_applets;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue