Remove obsolete methods which forward to the base class.

Change-Id: I7903d9664d52c6afeff800a95062c983a49703c6
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Reviewed-by: Sean Harmer <sh@theharmers.co.uk>
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
This commit is contained in:
Stephen Kelly 2012-03-21 20:47:23 +01:00 committed by Qt by Nokia
parent d596563cae
commit 6a54344e22
2 changed files with 0 additions and 22 deletions

View File

@ -2889,26 +2889,6 @@ void QTreeWidget::sortItems(int column, Qt::SortOrder order)
d->model->sort(column, order);
}
/*!
\internal
### Qt 5: remove
*/
void QTreeWidget::setSortingEnabled(bool enable)
{
QTreeView::setSortingEnabled(enable);
}
/*!
\internal
### Qt 5: remove
*/
bool QTreeWidget::isSortingEnabled() const
{
return QTreeView::isSortingEnabled();
}
/*!
Starts editing the \a item in the given \a column if it is editable.
*/

View File

@ -299,8 +299,6 @@ public:
int sortColumn() const;
void sortItems(int column, Qt::SortOrder order);
void setSortingEnabled(bool enable);
bool isSortingEnabled() const;
void editItem(QTreeWidgetItem *item, int column = 0);
void openPersistentEditor(QTreeWidgetItem *item, int column = 0);