summaryrefslogtreecommitdiffstats
path: root/src/gui/text/qfontmetrics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/text/qfontmetrics.cpp')
-rw-r--r--src/gui/text/qfontmetrics.cpp68
1 files changed, 0 insertions, 68 deletions
diff --git a/src/gui/text/qfontmetrics.cpp b/src/gui/text/qfontmetrics.cpp
index 012e9f300b..1d80e316fd 100644
--- a/src/gui/text/qfontmetrics.cpp
+++ b/src/gui/text/qfontmetrics.cpp
@@ -228,18 +228,6 @@ bool QFontMetrics::operator ==(const QFontMetrics &other) const
}
/*!
- \fn bool QFontMetrics::operator!=(const QFontMetrics &other)
-
- Returns true if \a other is not equal to this object; otherwise returns false.
-
- Two font metrics are considered equal if they were constructed
- from the same QFont and the paint devices they were constructed
- for are considered compatible.
-
- \sa operator==()
-*/
-
-/*!
\fn bool QFontMetrics::operator !=(const QFontMetrics &other) const
Returns true if \a other is not equal to this object; otherwise returns false.
@@ -1099,15 +1087,6 @@ bool QFontMetricsF::operator ==(const QFontMetricsF &other) const
}
/*!
- \fn bool QFontMetricsF::operator!=(const QFontMetricsF &other)
-
- Returns true if the font metrics are not equal to the \a other font
- metrics; otherwise returns false.
-
- \sa operator==()
-*/
-
-/*!
\fn bool QFontMetricsF::operator !=(const QFontMetricsF &other) const
\overload
@@ -1725,51 +1704,4 @@ qreal QFontMetricsF::lineWidth() const
return engine->lineThickness().toReal();
}
-/*!
- \fn QSize QFontMetrics::size(int flags, const QString &text, int len,
- int tabStops, int *tabArray) const
- \compat
-
- Use the size() function in combination with QString::left()
- instead.
-
- \oldcode
- QSize size = size(flags, str, len, tabstops, tabarray);
- \newcode
- QSize size = size(flags, str.left(len), tabstops, tabarray);
- \endcode
-*/
-
-/*!
- \fn QRect QFontMetrics::boundingRect(int x, int y, int w, int h, int flags,
- const QString& text, int len, int tabStops, int *tabArray) const
- \compat
-
- Use the boundingRect() function in combination with
- QString::left() and a QRect constructor instead.
-
- \oldcode
- QRect rect = boundingRect(x, y, w, h , flags, text, len,
- tabStops, tabArray);
- \newcode
- QRect rect = boundingRect(QRect(x, y, w, h), flags, text.left(len),
- tabstops, tabarray);
- \endcode
-
-*/
-
-/*!
- \fn QRect QFontMetrics::boundingRect(const QString &text, int len) const
- \compat
-
- Use the boundingRect() function in combination with
- QString::left() instead.
-
- \oldcode
- QRect rect = boundingRect(text, len);
- \newcode
- QRect rect = boundingRect(text.left(len));
- \endcode
-*/
-
QT_END_NAMESPACE