qdoc: Add simple return types such as void to output.

Change-Id: I2c9b2bc982f9fa3390a7b5bd322df9e015e53824
Reviewed-by: Martin Smith <martin.smith@nokia.com>
This commit is contained in:
Casper van Donderen 2012-03-28 14:29:09 +02:00 committed by Qt by Nokia
parent 05d1929685
commit c1e05824ad

View File

@ -4976,6 +4976,11 @@ void DitaXmlGenerator::replaceTypesWithLinks(const Node* n,
else
addLink(linkForNode(tn,parent),arg,DT_apiRelation);
}
else {
// Write simple arguments, like void and bool,
// which do not have a Qt defined target.
writeCharacters(arg.toString());
}
}
}
else {