Fix deprecated macros
The QTextCharFormat::fontFamily methods are deprecated as of Qt 6.1, not as of Qt 6.0. Mark them as obsolete in the documentation and point to the replacement there as well. Address API review comment. Change-Id: Id71ea1ebab6f7a385c8c3f286a35f88ba1177857 Reviewed-by: Andy Shaw <andy.shaw@qt.io> (cherry picked from commit 42e659b3205871649c921873365606b9f7b3f924) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
5fc0ebf6a7
commit
57c7b37482
@ -1457,6 +1457,7 @@ QTextCharFormat::QTextCharFormat(const QTextFormat &fmt)
|
||||
|
||||
/*!
|
||||
\fn void QTextCharFormat::setFontFamily(const QString &family)
|
||||
\obsolete Use setFontFamilies() instead.
|
||||
|
||||
Sets the text format's font \a family.
|
||||
|
||||
@ -1466,6 +1467,7 @@ QTextCharFormat::QTextCharFormat(const QTextFormat &fmt)
|
||||
|
||||
/*!
|
||||
\fn QString QTextCharFormat::fontFamily() const
|
||||
\obsolete Use fontFamilies() instead.
|
||||
|
||||
Returns the text format's font family.
|
||||
|
||||
|
@ -456,10 +456,10 @@ public:
|
||||
void setFont(const QFont &font, FontPropertiesInheritanceBehavior behavior = FontPropertiesAll);
|
||||
QFont font() const;
|
||||
|
||||
#if QT_DEPRECATED_SINCE(6, 0)
|
||||
QT_DEPRECATED_VERSION_X_6_0("Use setFontFamilies instead") inline void setFontFamily(const QString &family)
|
||||
#if QT_DEPRECATED_SINCE(6, 1)
|
||||
QT_DEPRECATED_VERSION_X_6_1("Use setFontFamilies instead") inline void setFontFamily(const QString &family)
|
||||
{ setProperty(FontFamilies, QVariant(QStringList(family))); }
|
||||
QT_DEPRECATED_VERSION_X_6_0("Use fontFamilies instead") inline QString fontFamily() const
|
||||
QT_DEPRECATED_VERSION_X_6_1("Use fontFamilies instead") inline QString fontFamily() const
|
||||
{ return property(FontFamilies).toStringList().first(); }
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user