mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:57:43 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -31,7 +31,7 @@ AppletManager& AppletManager::the()
|
|||
return *s_the;
|
||||
}
|
||||
|
||||
void AppletManager::set_position(const Gfx::IntPoint& position)
|
||||
void AppletManager::set_position(Gfx::IntPoint const& position)
|
||||
{
|
||||
m_window->move_to(position);
|
||||
m_window->set_visible(true);
|
||||
|
@ -169,7 +169,7 @@ void AppletManager::draw()
|
|||
}
|
||||
}
|
||||
|
||||
void AppletManager::draw_applet(const Window& applet)
|
||||
void AppletManager::draw_applet(Window const& applet)
|
||||
{
|
||||
if (!applet.backing_store())
|
||||
return;
|
||||
|
@ -181,7 +181,7 @@ void AppletManager::draw_applet(const Window& applet)
|
|||
painter.blit(applet.rect_in_applet_area().location(), *applet.backing_store(), applet.backing_store()->rect());
|
||||
}
|
||||
|
||||
void AppletManager::invalidate_applet(const Window& applet, const Gfx::IntRect&)
|
||||
void AppletManager::invalidate_applet(Window const& applet, Gfx::IntRect const&)
|
||||
{
|
||||
draw_applet(applet);
|
||||
draw();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue