summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorMaks Naumov <maksqwe1@ukr.net>2014-08-30 19:40:52 +0300
committerMaks Naumov <maksqwe1@ukr.net>2014-08-31 14:17:11 +0200
commit1c55481215b891cf683ba89e32f8f09270eecae1 (patch)
treea27cddea47257c027569cb3bf177fa40b2460f0e /src/tools
parent8d9957c671059664f85006d3d21d227bfa54535b (diff)
QDoc: fix Node::setPageType() when type name is "faq"
"HowToPage" has been verified above. Change-Id: If8ca9b375029d5b018936b04a2a313cf5b8788b6 Reviewed-by: Martin Smith <martin.smith@digia.com>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/qdoc/node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/qdoc/node.cpp b/src/tools/qdoc/node.cpp
index 1ad2c9de39..b65c531149 100644
--- a/src/tools/qdoc/node.cpp
+++ b/src/tools/qdoc/node.cpp
@@ -428,8 +428,8 @@ void Node::setPageType(const QString& t)
pageType_ = OverviewPage;
else if (t == "tutorial")
pageType_ = TutorialPage;
- else if (t == "howto")
- pageType_ = HowToPage;
+ else if (t == "faq")
+ pageType_ = FAQPage;
else if (t == "article")
pageType_ = ArticlePage;
else if (t == "example")