diff options
author | David Boddie <dboddie@trolltech.com> | 2009-10-01 13:04:02 (GMT) |
---|---|---|
committer | David Boddie <dboddie@trolltech.com> | 2009-10-01 13:06:39 (GMT) |
commit | 79e5594bf0da1aefbde463e77998ee62ab943a5a (patch) | |
tree | 643495e6d8a35dbca1b6168a7690b78504178fed /tools/qdoc3/generator.cpp | |
parent | 44c5cdc66c5cbeaa88d5dcbb3be629abfb889bcc (diff) | |
download | Qt-79e5594bf0da1aefbde463e77998ee62ab943a5a.zip Qt-79e5594bf0da1aefbde463e77998ee62ab943a5a.tar.gz Qt-79e5594bf0da1aefbde463e77998ee62ab943a5a.tar.bz2 |
Doc: Removed the old Console edition and updated edition naming.
Reviewed-by: Trust Me
Diffstat (limited to 'tools/qdoc3/generator.cpp')
-rw-r--r-- | tools/qdoc3/generator.cpp | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/tools/qdoc3/generator.cpp b/tools/qdoc3/generator.cpp index 47fe4b5..f7569ce 100644 --- a/tools/qdoc3/generator.cpp +++ b/tools/qdoc3/generator.cpp @@ -562,27 +562,20 @@ void Generator::generateModuleWarning(const ClassNode *classe, QString module = classe->moduleName(); if (!module.isEmpty()) { Text text; - if (!editionModuleMap["Console"].contains(module)) { + if (!editionModuleMap["DesktopLight"].contains(module)) { text << Atom::ParaLeft << Atom(Atom::FormattingLeft, ATOM_FORMATTING_BOLD) - << "This class is not part of the Qt Console Edition." - << Atom(Atom::FormattingRight, ATOM_FORMATTING_BOLD) - << Atom::ParaRight; - } - else if (!editionModuleMap["DesktopLight"].contains(module)) { - text << Atom::ParaLeft - << Atom(Atom::FormattingLeft, ATOM_FORMATTING_BOLD) - << "This class is not part of the Qt Desktop Light Edition." + << "This class is not part of the Qt GUI Framework Edition." << Atom(Atom::FormattingRight, ATOM_FORMATTING_BOLD) << Atom::ParaRight; } else if (module == "Qt3Support") { text << Atom::ParaLeft << Atom(Atom::FormattingLeft, ATOM_FORMATTING_BOLD) - << "Note to Qt Desktop Light Edition users:" + << "Note to Qt GUI Framework Edition users:" << Atom(Atom::FormattingRight, ATOM_FORMATTING_BOLD) << " This class is only available in the " - << Atom(Atom::AutoLink, "Qt Desktop Edition") + << Atom(Atom::AutoLink, "Qt Full Framework Edition") << "." << Atom::ParaRight; } |