Remove obsolete internal functions.

Change-Id: Ib0deecfe4bfc13504b98e6e1f3349f8c57b25314
Reviewed-by: Sean Harmer <sh@theharmers.co.uk>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Reviewed-by: Thorbjørn Lund Martsum <tmartsum@gmail.com>
Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
bb10
Stephen Kelly 2012-03-21 20:46:30 +01:00 committed by Qt by Nokia
parent 5ea56e93f7
commit 8ed2f9f189
2 changed files with 0 additions and 27 deletions

View File

@ -894,30 +894,6 @@ void QListView::startDrag(Qt::DropActions supportedActions)
QAbstractItemView::startDrag(supportedActions);
}
/*!
\internal
Called whenever items from the view is dropped on the viewport.
The \a event provides additional information.
*/
void QListView::internalDrop(QDropEvent *event)
{
// ### Qt5: remove that function
Q_UNUSED(event);
}
/*!
\internal
Called whenever the user starts dragging items and the items are movable,
enabling internal dragging and dropping of items.
*/
void QListView::internalDrag(Qt::DropActions supportedActions)
{
// ### Qt5: remove that function
Q_UNUSED(supportedActions);
}
#endif // QT_NO_DRAGANDDROP
/*!

View File

@ -160,9 +160,6 @@ protected:
void dragLeaveEvent(QDragLeaveEvent *e);
void dropEvent(QDropEvent *e);
void startDrag(Qt::DropActions supportedActions);
void internalDrop(QDropEvent *e);
void internalDrag(Qt::DropActions supportedActions);
#endif // QT_NO_DRAGANDDROP
QStyleOptionViewItem viewOptions() const;