Skip to content
Snippets Groups Projects
Commit be127fa0 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Added the keyword `readonly'

parent 46261d80
No related branches found
No related tags found
No related merge requests found
...@@ -43,6 +43,7 @@ QmlHighlighter::QmlHighlighter(QTextDocument *parent) : ...@@ -43,6 +43,7 @@ QmlHighlighter::QmlHighlighter(QTextDocument *parent) :
QSet<QString> qmlKeywords(keywords()); QSet<QString> qmlKeywords(keywords());
qmlKeywords << QLatin1String("property"); qmlKeywords << QLatin1String("property");
qmlKeywords << QLatin1String("signal"); qmlKeywords << QLatin1String("signal");
qmlKeywords << QLatin1String("readonly");
m_scanner.setKeywords(qmlKeywords); m_scanner.setKeywords(qmlKeywords);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment