============================================================================
| 181 | |
| 182 | //============================================================================ |
| 183 | void CResizeHandle::mouseMoveEvent(QMouseEvent* e) |
| 184 | { |
| 185 | if (!(e->buttons() & Qt::LeftButton)) |
| 186 | { |
| 187 | return; |
| 188 | } |
| 189 | |
| 190 | d->doResizing(e); |
| 191 | } |
| 192 | |
| 193 | |
| 194 | //============================================================================ |
nothing calls this directly
no test coverage detected