Details
-
Task
-
Resolution: Done
-
P2: Important
-
None
-
None
Description
There are a couple of Qt 5 to-do comments in QListView:
qtbase/src/widgets/itemviews/qlistview.cpp
/*! \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); }
qtbase/src/widgets/itemviews/qlistview_p.h
// ### FIXME: see if we can move the members into the dynamic/static classes
If these comments can be handled without breaking source-compatibility, they should be actioned for Qt 5.0.0. If not, they should be removed or changed to Qt 6 to-do's.
Attachments
Issue Links
- resulted from
-
QTBUG-23524 [API] Grep the source for Qt5 todo items
- Closed