merge addToOutputWindow and addToOutputWindowInline

This commit is contained in:
hjk
2011-01-07 11:34:25 +01:00
parent f48de4f567
commit 8fd480bd21
15 changed files with 70 additions and 93 deletions

View File

@@ -374,7 +374,7 @@ void S60EmulatorRunControl::slotAddToOutputWindow(const QString &line, bool onSt
static int prefixLength = prefix.length();
int index = line.indexOf(prefix);
if (index != -1) {
emit addToOutputWindowInline(this, line.mid(index + prefixLength + 1), onStdErr);
emit addToOutputWindow(this, line.mid(index + prefixLength + 1), onStdErr, true);
}
}