summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/CheckDeclarator.cpp
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2009-11-10 12:48:33 +0100
committerRoberto Raggi <roberto.raggi@nokia.com>2009-11-10 16:20:11 +0100
commit4c246763627cbc69b09ebe2ac1ea8be16669569f (patch)
tree9f8cc53798f31dd58db4da476f514cbc47f2c42c /src/shared/cplusplus/CheckDeclarator.cpp
parent98802456b3b7573e0f76779c9ed4fb2007a8612d (diff)
downloadqt-creator-4c246763627cbc69b09ebe2ac1ea8be16669569f.tar.gz
Removed ObjCMessageArgumentDeclarationListAST
Done with Erik Verbruggen
Diffstat (limited to 'src/shared/cplusplus/CheckDeclarator.cpp')
-rw-r--r--src/shared/cplusplus/CheckDeclarator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/cplusplus/CheckDeclarator.cpp b/src/shared/cplusplus/CheckDeclarator.cpp
index 6fd9245875..f89f796fe4 100644
--- a/src/shared/cplusplus/CheckDeclarator.cpp
+++ b/src/shared/cplusplus/CheckDeclarator.cpp
@@ -267,7 +267,7 @@ bool CheckDeclarator::visit(ObjCMethodPrototypeAST *ast)
if (ast->selector && ast->selector->asObjCSelectorWithArguments()) {
// TODO: add arguments (EV)
for (ObjCMessageArgumentDeclarationListAST *it = ast->arguments; it; it = it->next) {
- ObjCMessageArgumentDeclarationAST *argDecl = it->argument_declaration;
+ ObjCMessageArgumentDeclarationAST *argDecl = it->value;
semantic()->check(argDecl, method->arguments());
}