qdoc: Don't end sentences with a full stop in requisite tables

This is a minor visual change that stops QDoc from ending the
sentences with a full stop in the tables for class/QML type
requisites (Inherits, Inherited by, etc).

This ensures a uniform look for the table, as some of the
fields were already omitting the full stop.

Change-Id: I37b39ed0a5e273b40b24f24602042194d069ed00
Reviewed-by: Martin Smith <martin.smith@digia.com>
bb10
Topi Reinio 2015-04-15 12:54:59 +02:00 committed by Topi Reiniö
parent 336648aa1b
commit c09ff1dbcb
2 changed files with 3 additions and 3 deletions

View File

@ -213,7 +213,7 @@ void Generator::appendSortedNames(Text& text, const ClassNode* cn, const QList<R
foreach (const QString &className, classNames) {
text << classMap[className];
text << separator(index++, classNames.count());
text << comma(index++, classNames.count());
}
}
@ -236,7 +236,7 @@ void Generator::appendSortedQmlNames(Text& text, const Node* base, const NodeLis
foreach (const QString &name, names) {
text << classMap[name];
text << separator(index++, names.count());
text << comma(index++, names.count());
}
}

View File

@ -2176,7 +2176,7 @@ void HtmlGenerator::generateRequisites(InnerNode *inner, CodeMarker *marker)
else if ((*r).access_ == Node::Private) {
text << " (private)";
}
text << separator(index++, classe->baseClasses().count());
text << comma(index++, classe->baseClasses().count());
}
++r;
}