summaryrefslogtreecommitdiffstats
path: root/src/gui/text/qtextformat.h
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2020-06-08 16:50:01 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2020-06-09 09:34:18 +0200
commit8cccf0a76b82726ce987690d783a1b912aa6bba5 (patch)
tree2ad5dc46bd041c62c808d5ad86b049f9a24ccb58 /src/gui/text/qtextformat.h
parentef236456a4857a25b51688e1fd629a80caee1e34 (diff)
Remove deprecated methods and address some ### Qt 6 comments in gui/text
Change-Id: If1ed58ecbb13df88bdb1d72caccfd01c14d42eac Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
Diffstat (limited to 'src/gui/text/qtextformat.h')
-rw-r--r--src/gui/text/qtextformat.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/gui/text/qtextformat.h b/src/gui/text/qtextformat.h
index b4db18289e..a6d1bf1d57 100644
--- a/src/gui/text/qtextformat.h
+++ b/src/gui/text/qtextformat.h
@@ -449,8 +449,7 @@ public:
FontPropertiesSpecifiedOnly,
FontPropertiesAll
};
- void setFont(const QFont &font, FontPropertiesInheritanceBehavior behavior);
- void setFont(const QFont &font); // ### Qt6: Merge with above
+ void setFont(const QFont &font, FontPropertiesInheritanceBehavior behavior = FontPropertiesAll);
QFont font() const;
inline void setFontFamily(const QString &family)
@@ -580,14 +579,6 @@ public:
inline QString anchorHref() const
{ return stringProperty(AnchorHref); }
-#if QT_DEPRECATED_SINCE(5, 13)
- QT_DEPRECATED_X("Use setAnchorNames() instead")
- inline void setAnchorName(const QString &name)
- { setAnchorNames(QStringList(name)); }
- QT_DEPRECATED_X("Use anchorNames() instead")
- QString anchorName() const;
-#endif
-
inline void setAnchorNames(const QStringList &names)
{ setProperty(AnchorName, names); }
QStringList anchorNames() const;