From 671be35839d7b80d7f817275ff5595dfe701121b Mon Sep 17 00:00:00 2001 From: firewave Date: Mon, 24 Feb 2025 18:36:03 +0100 Subject: [PATCH] replaced `QVector` with `QList` it is just an alias --- gui/codeeditor.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/codeeditor.h b/gui/codeeditor.h index ba079753ff4..4698922243b 100644 --- a/gui/codeeditor.h +++ b/gui/codeeditor.h @@ -21,6 +21,7 @@ #include +#include #include #include #include @@ -29,7 +30,6 @@ #include #include #include -#include #include class CodeEditorStyle; @@ -67,8 +67,8 @@ class Highlighter : public QSyntaxHighlighter { void applyFormat(HighlightingRule &rule); - QVector mHighlightingRules; - QVector mHighlightingRulesWithSymbols; + QList mHighlightingRules; + QList mHighlightingRulesWithSymbols; QRegularExpression mCommentStartExpression; QRegularExpression mCommentEndExpression;