summaryrefslogtreecommitdiff
path: root/utils/themeeditor/skinhighlighter.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/skinhighlighter.h')
-rw-r--r--utils/themeeditor/skinhighlighter.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/themeeditor/skinhighlighter.h b/utils/themeeditor/skinhighlighter.h
index 6baa699871..4d5c68ba52 100644
--- a/utils/themeeditor/skinhighlighter.h
+++ b/utils/themeeditor/skinhighlighter.h
@@ -40,12 +40,14 @@ public:
40 * conditional - The color for conditionals and their delimiters 40 * conditional - The color for conditionals and their delimiters
41 * 41 *
42 */ 42 */
43 SkinHighlighter(QColor comment, QColor tag, QColor conditional, 43 SkinHighlighter(QTextDocument* doc);
44 QColor escaped, QTextDocument* doc);
45 virtual ~SkinHighlighter(); 44 virtual ~SkinHighlighter();
46 45
47 void highlightBlock(const QString& text); 46 void highlightBlock(const QString& text);
48 47
48public slots:
49 void loadSettings();
50
49private: 51private:
50 QColor escaped; 52 QColor escaped;
51 QColor tag; 53 QColor tag;