summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/debuggeroutputwindow.cpp
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2009-05-29 16:24:46 +0200
committerhjk <qtc-committer@nokia.com>2009-05-29 16:25:12 +0200
commitee5fb31f116d54c7acba063a0af25f61dedd34e2 (patch)
treeefaf123b961d500020f13876bc76cc3a087ea6ee /src/plugins/debugger/debuggeroutputwindow.cpp
parent82f6061a80615dc204ba9b2d569b91d7bd3cc2a1 (diff)
downloadqt-creator-ee5fb31f116d54c7acba063a0af25f61dedd34e2.tar.gz
debugger: re-start work on image dumper
Diffstat (limited to 'src/plugins/debugger/debuggeroutputwindow.cpp')
-rw-r--r--src/plugins/debugger/debuggeroutputwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggeroutputwindow.cpp b/src/plugins/debugger/debuggeroutputwindow.cpp
index 9c51a5300c..d50536e7ca 100644
--- a/src/plugins/debugger/debuggeroutputwindow.cpp
+++ b/src/plugins/debugger/debuggeroutputwindow.cpp
@@ -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();