diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-04-01 20:58:27 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-04-01 21:24:45 +0100 |
commit | 086969277e74d8ba065bf8145d3aeb0dec0bfee5 (patch) | |
tree | 02b3699a66735ef806d9b46353491f18f8e4e7b4 /Userland/Applications/Spreadsheet/SpreadsheetView.h | |
parent | 0376c127f6e98e03607700d0b3f5154b7014b2f8 (diff) | |
download | serenity-086969277e74d8ba065bf8145d3aeb0dec0bfee5.zip |
Everywhere: Run clang-format
Diffstat (limited to 'Userland/Applications/Spreadsheet/SpreadsheetView.h')
-rw-r--r-- | Userland/Applications/Spreadsheet/SpreadsheetView.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Applications/Spreadsheet/SpreadsheetView.h b/Userland/Applications/Spreadsheet/SpreadsheetView.h index aacc0c84cb..2723ed32a7 100644 --- a/Userland/Applications/Spreadsheet/SpreadsheetView.h +++ b/Userland/Applications/Spreadsheet/SpreadsheetView.h @@ -121,7 +121,7 @@ private: class EditingDelegate final : public GUI::StringModelEditingDelegate { public: - EditingDelegate(const Sheet& sheet) + EditingDelegate(Sheet const& sheet) : m_sheet(sheet) { } @@ -148,7 +148,7 @@ private: private: bool m_has_set_initial_value { false }; - const Sheet& m_sheet; + Sheet const& m_sheet; }; class TableCellPainter final : public GUI::TableCellPaintingDelegate { @@ -157,7 +157,7 @@ private: : m_table_view(view) { } - void paint(GUI::Painter&, const Gfx::IntRect&, const Gfx::Palette&, const GUI::ModelIndex&) override; + void paint(GUI::Painter&, Gfx::IntRect const&, Gfx::Palette const&, const GUI::ModelIndex&) override; private: const GUI::TableView& m_table_view; |