diff options
Diffstat (limited to 'src/qdoc/atom.cpp')
-rw-r--r-- | src/qdoc/atom.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qdoc/atom.cpp b/src/qdoc/atom.cpp index f0a7c63f2..ee788ec2d 100644 --- a/src/qdoc/atom.cpp +++ b/src/qdoc/atom.cpp @@ -442,6 +442,10 @@ void LinkAtom::resolveSquareBracketParams() genus_ = Node::DOC; continue; } + if (param == "api") { + genus_ = Node::API; + continue; + } error_ = squareBracketParams_; break; } |