summaryrefslogtreecommitdiff
path: root/utils/themeeditor/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/main.cpp')
-rw-r--r--utils/themeeditor/main.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/themeeditor/main.cpp b/utils/themeeditor/main.cpp
index a3a5daaa6c..87d38b861d 100644
--- a/utils/themeeditor/main.cpp
+++ b/utils/themeeditor/main.cpp
@@ -35,7 +35,11 @@ int main(int argc, char* argv[])
35{ 35{
36 QApplication app(argc, argv); 36 QApplication app(argc, argv);
37 37
38 char doc[] = "#Comment\n%Vd(U);Hey\n%?bl(test,3,5,2,1)<param2|param3>"; 38 char doc[] = "#Comment\n"
39 "%Vd(U);Hey\n"
40 "%?bl(test,3,5,2,1)<param2|param3>\n"
41 "%V(1,2,3,4,5)%pS(5)\n"
42 "Some more stuff here";
39 43
40 ParseTreeModel tree(doc); 44 ParseTreeModel tree(doc);
41 45