doc: Remove unneeded \fn commands
Removed unneeded \fn commands from two qdoc comments and moved one of the comments to the file where its function definition is located. Change-Id: I4c4371f0541d2995398b0d32e1df409433061226 Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com> Reviewed-by: Topi Reiniö <topi.reinio@qt.io>
This commit is contained in:
parent
9031069e12
commit
e6c089ae28
@ -804,6 +804,13 @@ QString qt_resolveFontFamilyAlias(const QString &alias)
|
||||
return alias;
|
||||
}
|
||||
|
||||
/*!
|
||||
Returns a list of alternative fonts for the specified \a family and
|
||||
\a style and \a script using the \a styleHint given.
|
||||
|
||||
Default implementation returns a list of fonts for which \a style and \a script support
|
||||
has been reported during the font database population.
|
||||
*/
|
||||
QStringList QPlatformFontDatabase::fallbacksForFamily(const QString &family, QFont::Style style, QFont::StyleHint styleHint, QChar::Script script) const
|
||||
{
|
||||
Q_UNUSED(family);
|
||||
|
@ -62,8 +62,6 @@ void qt_registerFontFamily(const QString &familyName);
|
||||
void qt_registerAliasToFontFamily(const QString &familyName, const QString &alias);
|
||||
|
||||
/*!
|
||||
\fn void QPlatformFontDatabase::registerQPF2Font(const QByteArray &dataArray, void *handle)
|
||||
|
||||
Registers the pre-rendered QPF2 font contained in the given \a dataArray.
|
||||
|
||||
\sa registerFont()
|
||||
@ -372,17 +370,6 @@ QFontEngine *QPlatformFontDatabase::fontEngine(const QByteArray &fontData, qreal
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*!
|
||||
\fn QStringList QPlatformFontDatabase::fallbacksForFamily(const QString &family, QFont::Style style, QFont::StyleHint styleHint, QChar::Script script) const
|
||||
|
||||
Returns a list of alternative fonts for the specified \a family and
|
||||
\a style and \a script using the \a styleHint given.
|
||||
|
||||
Default implementation returns a list of fonts for which \a style and \a script support
|
||||
has been reported during the font database population.
|
||||
*/
|
||||
// implemented in qfontdatabase.cpp
|
||||
|
||||
/*!
|
||||
Adds an application font described by the font contained supplied \a fontData
|
||||
or using the font contained in the file referenced by \a fileName. Returns
|
||||
|
Loading…
Reference in New Issue
Block a user