1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:27:34 +00:00

LibSyntax: Make rehighlight() take Gfx::Palette as by const-reference

This commit is contained in:
Andreas Kling 2021-02-11 23:52:39 +01:00
parent cf1c159ed5
commit a50ba0a491
13 changed files with 13 additions and 13 deletions

View file

@ -36,7 +36,7 @@ public:
CellSyntaxHighlighter() { }
virtual ~CellSyntaxHighlighter() override;
virtual void rehighlight(Gfx::Palette) override;
virtual void rehighlight(const Palette&) override;
void set_cell(const Cell* cell) { m_cell = cell; }
private: