mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 12:27: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
|
@ -20,8 +20,8 @@ public:
|
|||
static RefPtr<Cursor> create(Gfx::StandardCursor);
|
||||
~Cursor() = default;
|
||||
|
||||
const Gfx::CursorParams& params() const { return m_params; }
|
||||
const Gfx::Bitmap& bitmap(int scale_factor) const
|
||||
Gfx::CursorParams const& params() const { return m_params; }
|
||||
Gfx::Bitmap const& bitmap(int scale_factor) const
|
||||
{
|
||||
auto it = m_bitmaps.find(scale_factor);
|
||||
if (it == m_bitmaps.end()) {
|
||||
|
@ -47,7 +47,7 @@ public:
|
|||
|
||||
private:
|
||||
Cursor() = default;
|
||||
Cursor(NonnullRefPtr<Gfx::Bitmap>&&, int, const Gfx::CursorParams&);
|
||||
Cursor(NonnullRefPtr<Gfx::Bitmap>&&, int, Gfx::CursorParams const&);
|
||||
|
||||
bool load(StringView, StringView);
|
||||
void update_rect_if_animated();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue