| 146 | } |
| 147 | |
| 148 | void guiDelay(int ms) { |
| 149 | QTime dt = QTime::currentTime().addMSecs(ms); |
| 150 | while (QTime::currentTime() < dt) { |
| 151 | qApp->processEvents(); |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | QString sendingROM(QDragEnterEvent *e, bool *value) { |
| 156 | QString ret; |
no outgoing calls
no test coverage detected