Remove docs for removed functions.
Change-Id: I33346d0a2b324afe4b85b1792854b586aa7685ba Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>bb10
parent
d23322bf1c
commit
f6dd3ab553
|
|
@ -1262,97 +1262,6 @@ void QAction::activate(ActionEvent event)
|
|||
\value Hover this will cause the QAction::hovered() signal to be emitted.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QAction::setMenuText(const QString &text)
|
||||
|
||||
Use setText() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QString QAction::menuText() const
|
||||
|
||||
Use text() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn bool QAction::isOn() const
|
||||
|
||||
Use isChecked() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QAction::setOn(bool b)
|
||||
|
||||
Use setChecked() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn bool QAction::isToggleAction() const
|
||||
|
||||
Use isCheckable() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QAction::setToggleAction(bool b)
|
||||
|
||||
Use setCheckable() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QAction::setIconSet(const QIcon &i)
|
||||
|
||||
Use setIcon() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn bool QAction::addTo(QWidget *w)
|
||||
|
||||
Use QWidget::addAction() instead.
|
||||
|
||||
\oldcode
|
||||
action->addTo(widget);
|
||||
\newcode
|
||||
widget->addAction(action);
|
||||
\endcode
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn bool QAction::removeFrom(QWidget *w)
|
||||
|
||||
Use QWidget::removeAction() instead.
|
||||
|
||||
\oldcode
|
||||
action->removeFrom(widget);
|
||||
\newcode
|
||||
widget->removeAction(action);
|
||||
\endcode
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QAction::setAccel(const QKeySequence &shortcut)
|
||||
|
||||
Use setShortcut() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QIcon QAction::iconSet() const
|
||||
|
||||
Use icon() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QKeySequence QAction::accel() const
|
||||
|
||||
Use shortcut() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QAction::activated(int i);
|
||||
|
||||
Use triggered() instead.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\property QAction::menuRole
|
||||
\brief the action's menu role
|
||||
|
|
|
|||
|
|
@ -943,60 +943,4 @@ bool QAbstractSlider::event(QEvent *e)
|
|||
return QWidget::event(e);
|
||||
}
|
||||
|
||||
/*! \fn int QAbstractSlider::minValue() const
|
||||
|
||||
Use minimum() instead.
|
||||
*/
|
||||
|
||||
/*! \fn int QAbstractSlider::maxValue() const
|
||||
|
||||
Use maximum() instead.
|
||||
*/
|
||||
|
||||
/*! \fn int QAbstractSlider::lineStep() const
|
||||
|
||||
Use singleStep() instead.
|
||||
*/
|
||||
|
||||
/*! \fn void QAbstractSlider::setMinValue(int v)
|
||||
|
||||
Use setMinimum() instead.
|
||||
*/
|
||||
|
||||
/*! \fn void QAbstractSlider::setMaxValue(int v)
|
||||
|
||||
Use setMaximum() instead.
|
||||
*/
|
||||
|
||||
/*! \fn void QAbstractSlider::setLineStep(int v)
|
||||
|
||||
Use setSingleStep() instead.
|
||||
*/
|
||||
|
||||
/*! \fn void QAbstractSlider::addPage()
|
||||
|
||||
Use triggerAction(QAbstractSlider::SliderPageStepAdd) instead.
|
||||
*/
|
||||
|
||||
/*! \fn void QAbstractSlider::subtractPage()
|
||||
|
||||
Use triggerAction(QAbstractSlider::SliderPageStepSub) instead.
|
||||
*/
|
||||
|
||||
/*! \fn void QAbstractSlider::addLine()
|
||||
|
||||
Use triggerAction(QAbstractSlider::SliderSingleStepAdd) instead.
|
||||
*/
|
||||
|
||||
/*! \fn void QAbstractSlider::subtractLine()
|
||||
|
||||
Use triggerAction(QAbstractSlider::SliderSingleStepSub) instead.
|
||||
*/
|
||||
|
||||
/*! \fn void QAbstractSlider::setSteps(int single, int page)
|
||||
|
||||
Use setSingleStep(\a single) followed by setPageStep(\a page)
|
||||
instead.
|
||||
*/
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
|
|
|||
Loading…
Reference in New Issue