debugger: re-start work on image dumper

This commit is contained in:
hjk
2009-05-29 16:24:46 +02:00
parent 82f6061a80
commit ee5fb31f11
5 changed files with 48 additions and 8 deletions

View File

@@ -252,8 +252,8 @@ void DebuggerOutputWindow::showOutput(const QString &prefix, const QString &outp
foreach (QString line, output.split("\n")) {
// FIXME: QTextEdit asserts on really long lines...
const int n = 3000;
if (line.size() > n)
line = line.left(n) + " [...] <cut off>";
//if (line.size() > n)
// line = line.left(n) + " [...] <cut off>";
m_combinedText->appendPlainText(prefix + line);
}
QTextCursor cursor = m_combinedText->textCursor();