summaryrefslogtreecommitdiff
path: root/src/plugins/glsleditor/glsleditor.cpp
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2010-11-25 12:19:57 +0100
committerRoberto Raggi <roberto.raggi@nokia.com>2010-11-25 12:56:16 +0100
commit864c3bfc98bee160276e37495d2a364cb3a3f6c8 (patch)
treee41716095873410c353fcf2fac6b5c235201014d /src/plugins/glsleditor/glsleditor.cpp
parent6c74dbbac0c9aa16138dbfc757053d32616981d5 (diff)
downloadqt-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.cpp2
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);