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. Pick-to: 6.1 Change-Id: Id71ea1ebab6f7a385c8c3f286a35f88ba1177857 Reviewed-by: Andy Shaw <andy.shaw@qt.io>
This commit is contained in:
parent
3dcdd89dd1
commit
42e659b320
@ -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…
Reference in New Issue
Block a user