| 39 | } |
| 40 | |
| 41 | void EditorFlowScene::dragEnterEvent(QGraphicsSceneDragDropEvent *event) |
| 42 | { |
| 43 | if(event->mimeData()->hasFormat("application/x-qabstractitemmodeldatalist") ) |
| 44 | { |
| 45 | event->setAccepted(true); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | void EditorFlowScene::dragLeaveEvent(QGraphicsSceneDragDropEvent *event) |
| 50 | { |
nothing calls this directly
no outgoing calls
no test coverage detected