diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-10 12:45:20 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-10 16:20:10 +0100 |
commit | e5c9aaab4b1c4ac709eab50dc043e3c69235ecf7 (patch) | |
tree | 13007ecc9a49a072b4e448da3f51cbb074b6cf6f /src/shared/cplusplus/CheckName.cpp | |
parent | d358c89f09d41e44a9ab23efd7d18b3fda5a70ce (diff) | |
download | qt-creator-e5c9aaab4b1c4ac709eab50dc043e3c69235ecf7.tar.gz |
Removed ObjCSelectorArgumentListAST
Done with Erik Verbruggen
Diffstat (limited to 'src/shared/cplusplus/CheckName.cpp')
-rw-r--r-- | src/shared/cplusplus/CheckName.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/cplusplus/CheckName.cpp b/src/shared/cplusplus/CheckName.cpp index bcd8b3f180..4b1c62ff0e 100644 --- a/src/shared/cplusplus/CheckName.cpp +++ b/src/shared/cplusplus/CheckName.cpp @@ -389,7 +389,7 @@ bool CheckName::visit(ObjCSelectorWithArgumentsAST *ast) { std::vector<Name *> names; for (ObjCSelectorArgumentListAST *it = ast->selector_arguments; it; it = it->next) { - Identifier *id = identifier(it->argument->name_token); + Identifier *id = identifier(it->value->name_token); Name *name = control()->nameId(id); names.push_back(name); |