| 3 | #include <iostream> |
| 4 | |
| 5 | ListWidget::ListWidget(QWidget *parent) : |
| 6 | QListWidget(parent) |
| 7 | { |
| 8 | } |
| 9 | |
| 10 | void ListWidget::dragEnterEvent(QDragEnterEvent* event) { |
| 11 | event->accept(); |
nothing calls this directly
no outgoing calls
no test coverage detected