Remove docs for removed functions.

Change-Id: I75ec0137c56581653ee0dd6fd84f10f0a6c3429c
Reviewed-by: J-P Nurmi <j-p.nurmi@nokia.com>
This commit is contained in:
Frederik Gladhorn 2012-08-15 15:28:52 +02:00 committed by Qt by Nokia
parent 3cc7eab39f
commit a5ab0a472a

View File

@ -583,40 +583,6 @@ void QToolTip::setFont(const QFont &font)
QApplication::setFont(font, "QTipLabel");
}
/*!
\fn void QToolTip::add(QWidget *widget, const QString &text)
Use QWidget::setToolTip() instead.
\oldcode
tip->add(widget, text);
\newcode
widget->setToolTip(text);
\endcode
*/
/*!
\fn void QToolTip::add(QWidget *widget, const QRect &rect, const QString &text)
Intercept the QEvent::ToolTip events in your widget's
QWidget::event() function and call QToolTip::showText() with the
text you want to display. The \l{widgets/tooltips}{Tooltips}
example illustrates this technique.
*/
/*!
\fn void QToolTip::remove(QWidget *widget)
Use QWidget::setToolTip() instead.
\oldcode
tip->remove(widget);
\newcode
widget->setToolTip("");
\endcode
*/
QT_END_NAMESPACE
#include "qtooltip.moc"