LibSyntax: Move GUI::Highlighter to Syntax::Highlighter in LibSyntax

This is a move towards dropping more LibGUI dependencies.
This commit is contained in:
Andreas Kling 2021-02-07 15:15:10 +01:00
commit 43c7d7d285
Notes: sideshowbarker 2024-07-18 22:32:34 +09:00
22 changed files with 99 additions and 61 deletions

View file

@ -33,7 +33,7 @@
namespace Cpp {
static GUI::TextStyle style_for_token_type(const Gfx::Palette& palette, Cpp::Token::Type type)
static Syntax::TextStyle style_for_token_type(const Gfx::Palette& palette, Cpp::Token::Type type)
{
switch (type) {
case Cpp::Token::Type::Keyword: