| 373 | } |
| 374 | |
| 375 | void setDragPixmap(const QPixmap &pix) |
| 376 | { |
| 377 | if (mDrag) { |
| 378 | DragPixmapGenerator::DragPixmap dragPixmap = DragPixmapGenerator::generate({pix}, 1); |
| 379 | mDrag->setPixmap(dragPixmap.pix); |
| 380 | mDrag->setHotSpot(dragPixmap.hotSpot); |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | void executeDrag() |
| 385 | { |
no test coverage detected