| 113 | } |
| 114 | |
| 115 | void LCDWidget::dragMoveEvent(QDragMoveEvent *e) { |
| 116 | m_side = (e->pos().x() < width() / 2) ? LcdLeft : LcdRight; |
| 117 | } |
| 118 | |
| 119 | void LCDWidget::dragLeaveEvent(QDragLeaveEvent *e) { |
| 120 | e->accept(); |
nothing calls this directly
no outgoing calls
no test coverage detected