diff options
author | Martin Smith <msmith@trolltech.com> | 2009-12-18 13:23:13 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-12-18 13:23:13 (GMT) |
commit | 12e2c9075e694897ae52048c2069f57a22ef4031 (patch) | |
tree | 02e5d95dffa2d1cd6558570752059525cb0856b9 /tools/qdoc3 | |
parent | 0d212670c06ed54ac785e0bb945c792947d388f5 (diff) | |
download | Qt-12e2c9075e694897ae52048c2069f57a22ef4031.zip Qt-12e2c9075e694897ae52048c2069f57a22ef4031.tar.gz Qt-12e2c9075e694897ae52048c2069f57a22ef4031.tar.bz2 |
doc: Added a missing \sa command, plus a \l in the text.
Task-number: QTBUG-6288
Diffstat (limited to 'tools/qdoc3')
-rw-r--r-- | tools/qdoc3/cppcodeparser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/qdoc3/cppcodeparser.cpp b/tools/qdoc3/cppcodeparser.cpp index 41a2456..9ec7fdf 100644 --- a/tools/qdoc3/cppcodeparser.cpp +++ b/tools/qdoc3/cppcodeparser.cpp @@ -2318,9 +2318,9 @@ void CppCodeParser::createExampleFileNodes(FakeNode *fake) exampleFile.mid(sizeOfBoringPartOfName), Node::File); foreach (const QString &imageFile, imageFiles) { - FakeNode* newFake = new FakeNode(fake, - imageFile.mid(sizeOfBoringPartOfName), - Node::Image); + new FakeNode(fake, + imageFile.mid(sizeOfBoringPartOfName), + Node::Image); } } |