summaryrefslogtreecommitdiff
path: root/src/gui/text/qtextformat.cpp
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.cpp
parentef236456a4857a25b51688e1fd629a80caee1e34 (diff)
downloadqtbase-8cccf0a76b82726ce987690d783a1b912aa6bba5.tar.gz
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.cpp')
-rw-r--r--src/gui/text/qtextformat.cpp48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/gui/text/qtextformat.cpp b/src/gui/text/qtextformat.cpp
index 2d771aa2ec..75f8c8fb8b 100644
--- a/src/gui/text/qtextformat.cpp
+++ b/src/gui/text/qtextformat.cpp
@@ -1842,20 +1842,6 @@ void QTextCharFormat::setUnderlineStyle(UnderlineStyle style)
none has been set.
*/
-
-#if QT_DEPRECATED_SINCE(5, 13)
-/*!
- \fn void QTextCharFormat::setAnchorName(const QString &name)
- \obsolete
-
- This function is deprecated. Use setAnchorNames() instead.
-
- Sets the text format's anchor \a name. For the anchor to work as a
- hyperlink, the destination must be set with setAnchorHref() and
- the anchor must be enabled with setAnchor().
-*/
-#endif
-
/*!
\fn void QTextCharFormat::setAnchorNames(const QStringList &names)
\since 4.3
@@ -1865,28 +1851,6 @@ void QTextCharFormat::setUnderlineStyle(UnderlineStyle style)
the anchor must be enabled with setAnchor().
*/
-#if QT_DEPRECATED_SINCE(5, 13)
-/*!
- \fn QString QTextCharFormat::anchorName() const
- \obsolete
-
- This function is deprecated. Use anchorNames() instead.
-
- Returns the anchor name associated with this text format, or an empty
- string if none has been set. If the anchor name is set, text with this
- format can be the destination of a hypertext link.
-*/
-QString QTextCharFormat::anchorName() const
-{
- QVariant prop = property(AnchorName);
- if (prop.userType() == QMetaType::QStringList)
- return prop.toStringList().value(0);
- else if (prop.userType() != QMetaType::QString)
- return QString();
- return prop.toString();
-}
-#endif
-
/*!
\fn QStringList QTextCharFormat::anchorNames() const
\since 4.3
@@ -1992,18 +1956,6 @@ QStringList QTextCharFormat::anchorNames() const
*/
/*!
- \overload
-
- Sets the text format's \a font.
-
- \sa font()
-*/
-void QTextCharFormat::setFont(const QFont &font)
-{
- setFont(font, FontPropertiesAll);
-}
-
-/*!
\since 5.3
Sets the text format's \a font.