| 283 | } |
| 284 | |
| 285 | void AppOutputPane::appendTextToApplication(const QString &id, const QString &text, OutputPane::OutputFormat format, OutputPane::AppendMode mode) |
| 286 | { |
| 287 | if (d->appPane.contains(id)) |
| 288 | d->appPane[id]->appendText(text, format, mode); |
| 289 | else |
| 290 | d->defaultPane->appendText(text, format, mode); |
| 291 | } |
| 292 | |
| 293 | void AppOutputPane::slotCloseOutputPane() |
| 294 | { |
nothing calls this directly
no test coverage detected