| 104 | } |
| 105 | |
| 106 | void LCDWidget::dragEnterEvent(QDragEnterEvent *e) { |
| 107 | m_dragRom = sendingROM(e, &m_isSendingRom); |
| 108 | |
| 109 | if (!m_isSendingRom) { |
| 110 | m_transferDrag = sendingHandler->dragOccured(e); |
| 111 | m_side = (e->pos().x() < width() / 2) ? LcdLeft : LcdRight; |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | void LCDWidget::dragMoveEvent(QDragMoveEvent *e) { |
| 116 | m_side = (e->pos().x() < width() / 2) ? LcdLeft : LcdRight; |
nothing calls this directly
no test coverage detected