Renamed Symbol::identity() to Symbol::unqualifiedName().

This commit is contained in:
Roberto Raggi
2010-08-26 12:23:09 +02:00
parent e3551684ee
commit 988cc958ab
8 changed files with 25 additions and 25 deletions

View File

@@ -178,7 +178,7 @@ QString DeclFromDef::generateDeclaration(const CppQuickFixState &,
oo.setShowArgumentNames(true);
QString decl;
decl += oo(method->type(), method->identity());
decl += oo(method->type(), method->unqualifiedName());
decl += QLatin1String(";\n");
return decl;