QDoc: Fix warning - unused variable

Change-Id: Id4068e1a1fcfad8fb3cc9174f995cb2b73b6e194
Reviewed-by: Martin Smith <martin.smith@digia.com>
This commit is contained in:
Frederik Gladhorn 2012-12-18 17:39:07 +01:00 committed by The Qt Project
parent 854e5c473b
commit 234163adb3

View File

@ -344,7 +344,7 @@ void QmlDocVisitor::applyMetacommands(QQmlJS::AST::SourceLocation,
else if ((command == COMMAND_INGROUP) && !args.isEmpty()) {
ArgList::ConstIterator argsIter = args.constBegin();
while (argsIter != args.constEnd()) {
DocNode* dn = QDocDatabase::qdocDB()->addToGroup(argsIter->first, node);
QDocDatabase::qdocDB()->addToGroup(argsIter->first, node);
++argsIter;
}
}