| 439 | } |
| 440 | |
| 441 | void Window::emitFileDrop( FileDropEvent *event ) |
| 442 | { |
| 443 | applyCurrentContext(); |
| 444 | |
| 445 | CollectorEvent<FileDropEvent> collector( event ); |
| 446 | mSignalFileDrop.emit( collector, *event ); |
| 447 | if( ! event->isHandled() ) |
| 448 | getApp()->fileDrop( *event ); |
| 449 | } |
| 450 | |
| 451 | void Window::applyCurrentContext() |
| 452 | { |
no test coverage detected