diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-11-25 12:19:57 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-11-25 12:56:16 +0100 |
commit | 864c3bfc98bee160276e37495d2a364cb3a3f6c8 (patch) | |
tree | e41716095873410c353fcf2fac6b5c235201014d /src/plugins/glsleditor/glsleditor.cpp | |
parent | 6c74dbbac0c9aa16138dbfc757053d32616981d5 (diff) | |
download | qt-creator-864c3bfc98bee160276e37495d2a364cb3a3f6c8.tar.gz |
Added the suffix AST to the ast nodes and some initial work on the GLSL type system.
Diffstat (limited to 'src/plugins/glsleditor/glsleditor.cpp')
-rw-r--r-- | src/plugins/glsleditor/glsleditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/glsleditor/glsleditor.cpp b/src/plugins/glsleditor/glsleditor.cpp index c933ce20fe..f256ee50fb 100644 --- a/src/plugins/glsleditor/glsleditor.cpp +++ b/src/plugins/glsleditor/glsleditor.cpp @@ -264,7 +264,7 @@ void GLSLTextEditor::updateDocumentNow() Engine engine; Parser parser(&engine, preprocessedCode.constData(), preprocessedCode.size(), variant); - TranslationUnit *ast = parser.parse(); + TranslationUnitAST *ast = parser.parse(); QTextCharFormat errorFormat; errorFormat.setUnderlineStyle(QTextCharFormat::WaveUnderline); |