Remove qdoc for code that no longer exists.
Change-Id: I82d4ba930335a03181aa20c9e4cb060ca8b35b9a Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
This commit is contained in:
parent
f03099cee3
commit
7e46af4a41
@ -10791,33 +10791,6 @@ void QWidget::stackUnder(QWidget* w)
|
||||
QApplication::sendEvent(this, &e);
|
||||
}
|
||||
|
||||
/*!
|
||||
\enum QWidget::BackgroundOrigin
|
||||
|
||||
\compat
|
||||
|
||||
\value WidgetOrigin
|
||||
\value ParentOrigin
|
||||
\value WindowOrigin
|
||||
\value AncestorOrigin
|
||||
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QWidget::drawText(const QPoint &p, const QString &s)
|
||||
|
||||
Drawing may only take place in a QPaintEvent. Overload
|
||||
paintEvent() to do your drawing and call update() to schedule a
|
||||
replaint whenever necessary. See also QPainter.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QWidget::drawText(int x, int y, const QString &s)
|
||||
|
||||
Drawing may only take place in a QPaintEvent. Overload
|
||||
paintEvent() to do your drawing and call update() to schedule a
|
||||
replaint whenever necessary. See also QPainter.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn bool QWidget::isTopLevel() const
|
||||
|
@ -488,24 +488,6 @@ bool QDial::event(QEvent *e)
|
||||
return QAbstractSlider::event(e);
|
||||
}
|
||||
|
||||
/*!
|
||||
\fn void QDial::dialPressed();
|
||||
|
||||
Use QAbstractSlider::sliderPressed() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QDial::dialMoved(int value);
|
||||
|
||||
Use QAbstractSlider::sliderMoved() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QDial::dialReleased();
|
||||
|
||||
Use QAbstractSlider::sliderReleased() instead.
|
||||
*/
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QT_NO_DIAL
|
||||
|
@ -153,15 +153,6 @@ QT_BEGIN_NAMESPACE
|
||||
\value Triangular The tabs are drawn with a triangular look.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::selected(const QString &tabLabel)
|
||||
|
||||
This signal is emitted whenever a tab is selected (raised),
|
||||
including during the first show().
|
||||
|
||||
You can normally use currentChanged() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::currentChanged(int index)
|
||||
|
||||
@ -1345,153 +1336,6 @@ void QTabWidget::clear()
|
||||
removeTab(0);
|
||||
}
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::insertTab(QWidget *widget, const QString &label, int index)
|
||||
|
||||
Use insertTab(index, widget, label) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::insertTab(QWidget *widget, const QIcon& icon, const QString &label, int index)
|
||||
|
||||
Use insertTab(index, widget, icon, label) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::changeTab(QWidget *widget, const QString
|
||||
&label)
|
||||
|
||||
Use setTabText() instead.
|
||||
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::changeTab(QWidget *widget, const QIcon& icon, const QString &label)
|
||||
|
||||
Use setTabText() and setTabIcon() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn bool QTabWidget::isTabEnabled( QWidget *widget) const
|
||||
|
||||
Use isTabEnabled(tabWidget->indexOf(widget)) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::setTabEnabled(QWidget *widget, bool b)
|
||||
|
||||
Use setTabEnabled(tabWidget->indexOf(widget), b) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QString QTabWidget::tabLabel(QWidget *widget) const
|
||||
|
||||
Use tabText(tabWidget->indexOf(widget)) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::setTabLabel(QWidget *widget, const QString
|
||||
&label)
|
||||
|
||||
Use setTabText(tabWidget->indexOf(widget), label) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QIcon QTabWidget::tabIconSet(QWidget * widget) const
|
||||
|
||||
Use tabIcon(tabWidget->indexOf(widget)) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::setTabIconSet(QWidget * widget, const QIcon & icon)
|
||||
|
||||
Use setTabIcon(tabWidget->indexOf(widget), icon) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::removeTabToolTip(QWidget * widget)
|
||||
|
||||
Use setTabToolTip(tabWidget->indexOf(widget), QString()) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::setTabToolTip(QWidget * widget, const QString & tip)
|
||||
|
||||
Use setTabToolTip(tabWidget->indexOf(widget), tip) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QString QTabWidget::tabToolTip(QWidget * widget) const
|
||||
|
||||
Use tabToolTip(tabWidget->indexOf(widget)) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QWidget * QTabWidget::currentPage() const
|
||||
|
||||
Use currentWidget() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QWidget *QTabWidget::page(int index) const
|
||||
|
||||
Use widget() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn QString QTabWidget::label(int index) const
|
||||
|
||||
Use tabText() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn int QTabWidget::currentPageIndex() const
|
||||
|
||||
Use currentIndex() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn int QTabWidget::margin() const
|
||||
|
||||
This function is kept only to make old code compile.
|
||||
This functionality is no longer supported by QTabWidget.
|
||||
|
||||
\sa contentsRect(), setContentsMargins()
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::setMargin(int margin)
|
||||
|
||||
This function is kept only to make old code compile.
|
||||
This functionality is no longer supported by QTabWidget.
|
||||
|
||||
\sa contentsRect(), setContentsMargins()
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::setCurrentPage(int index)
|
||||
|
||||
Use setCurrentIndex() instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::showPage(QWidget *widget)
|
||||
|
||||
Use setCurrentIndex(indexOf(widget)) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::removePage(QWidget *widget)
|
||||
|
||||
Use removeTab(indexOf(widget)) instead.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\fn void QTabWidget::currentChanged(QWidget *widget)
|
||||
|
||||
Use currentChanged(int) instead.
|
||||
*/
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#include "moc_qtabwidget.cpp"
|
||||
|
Loading…
Reference in New Issue
Block a user