diff -r ef0373b55136 -r 758a864f9613 tools/qdoc3/generator.cpp --- a/tools/qdoc3/generator.cpp Fri Sep 17 08:34:18 2010 +0300 +++ b/tools/qdoc3/generator.cpp Mon Oct 04 01:19:32 2010 +0300 @@ -1068,8 +1068,11 @@ Text text; text << Atom::ParaLeft << "This " - << typeString(node) - << " was introduced in "; + << typeString(node); + if (node->type() == Node::Enum) + text << " was introduced or modified in "; + else + text << " was introduced in "; if (project.isEmpty()) text << "version"; else