| 275 | } |
| 276 | |
| 277 | void AppOutputPane::setStopHandler(const QString &id, StopHandler handler) |
| 278 | { |
| 279 | if (d->stopHandlerMap.contains(id)) |
| 280 | return; |
| 281 | |
| 282 | d->stopHandlerMap[id] = handler; |
| 283 | } |
| 284 | |
| 285 | void AppOutputPane::appendTextToApplication(const QString &id, const QString &text, OutputPane::OutputFormat format, OutputPane::AppendMode mode) |
| 286 | { |
no test coverage detected