| 437 | } |
| 438 | |
| 439 | void OutputModel::appendLines( const QStringList& lines ) |
| 440 | { |
| 441 | Q_D(OutputModel); |
| 442 | |
| 443 | if( lines.isEmpty() ) |
| 444 | return; |
| 445 | |
| 446 | QMetaObject::invokeMethod(d->worker, "addLines", |
| 447 | Q_ARG(QStringList, lines)); |
| 448 | } |
| 449 | |
| 450 | void OutputModel::appendLine( const QString& line ) |
| 451 | { |