mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-05 01:55:21 +03:00
LibGUI: Convert INISyntaxHighlighter to east-const
This commit is contained in:
parent
1f7e363b74
commit
cd92b73845
Notes:
sideshowbarker
2024-07-17 21:57:31 +09:00
Author: https://github.com/sppmacd Commit: https://github.com/SerenityOS/serenity/commit/cd92b738456 Pull-request: https://github.com/SerenityOS/serenity/pull/11502
@ -10,7 +10,7 @@
|
||||
|
||||
namespace GUI {
|
||||
|
||||
static Syntax::TextStyle style_for_token_type(const Gfx::Palette& palette, IniToken::Type type)
|
||||
static Syntax::TextStyle style_for_token_type(Gfx::Palette const& palette, IniToken::Type type)
|
||||
{
|
||||
switch (type) {
|
||||
case IniToken::Type::LeftBracket:
|
||||
@ -36,7 +36,7 @@ bool IniSyntaxHighlighter::is_identifier(u64 token) const
|
||||
return ini_token == GUI::IniToken::Type::Name;
|
||||
}
|
||||
|
||||
void IniSyntaxHighlighter::rehighlight(const Palette& palette)
|
||||
void IniSyntaxHighlighter::rehighlight(Palette const& palette)
|
||||
{
|
||||
auto text = m_client->get_text();
|
||||
IniLexer lexer(text);
|
||||
|
@ -18,7 +18,7 @@ public:
|
||||
virtual bool is_identifier(u64) const override;
|
||||
|
||||
virtual Syntax::Language language() const override { return Syntax::Language::INI; }
|
||||
virtual void rehighlight(const Palette&) override;
|
||||
virtual void rehighlight(Palette const&) override;
|
||||
|
||||
protected:
|
||||
virtual Vector<MatchingTokenPair> matching_token_pairs_impl() const override;
|
||||
|
Loading…
Reference in New Issue
Block a user