summaryrefslogtreecommitdiff
path: root/utils/themeeditor/editorwindow.h
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-06-03 07:38:59 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-06-03 07:38:59 +0000
commit6feac4a315574b9cc037a328018e6ba9398a77d5 (patch)
treedc72d398a354ee9bc01cc4cc3ae24bad857460c4 /utils/themeeditor/editorwindow.h
parent1dc7f490c91993a06b0de1988efece102353455f (diff)
downloadrockbox-6feac4a315574b9cc037a328018e6ba9398a77d5.tar.gz
rockbox-6feac4a315574b9cc037a328018e6ba9398a77d5.zip
Theme Editor: Added syntax highlighting
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26506 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/editorwindow.h')
-rw-r--r--utils/themeeditor/editorwindow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/themeeditor/editorwindow.h b/utils/themeeditor/editorwindow.h
index 03cdf66caf..a13bd4b6bb 100644
--- a/utils/themeeditor/editorwindow.h
+++ b/utils/themeeditor/editorwindow.h
@@ -25,6 +25,7 @@
25#include <QMainWindow> 25#include <QMainWindow>
26 26
27#include "parsetreemodel.h" 27#include "parsetreemodel.h"
28#include "skinhighlighter.h"
28 29
29namespace Ui { 30namespace Ui {
30 class EditorWindow; 31 class EditorWindow;
@@ -43,6 +44,7 @@ private slots:
43private: 44private:
44 Ui::EditorWindow *ui; 45 Ui::EditorWindow *ui;
45 ParseTreeModel* tree; 46 ParseTreeModel* tree;
47 SkinHighlighter* highlighter;
46 48
47}; 49};
48 50