| 3 | #include <QtGui/QDropEvent> |
| 4 | |
| 5 | TableWidget::TableWidget(QWidget *parent) : QTableWidget{parent} {} |
| 6 | |
| 7 | void TableWidget::dropEvent(QDropEvent *e) { |
| 8 | if(e->source() != this) { |
nothing calls this directly
no outgoing calls
no test coverage detected