From a595e8f4035b76012f8537aaf0f92751096e4c82 Mon Sep 17 00:00:00 2001 From: hjk <qtc-committer@nokia.com> Date: Thu, 18 Jun 2009 13:16:09 +0200 Subject: [PATCH] debugger: limit log window to 100000 lines. --- src/plugins/debugger/debuggeroutputwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/debugger/debuggeroutputwindow.cpp b/src/plugins/debugger/debuggeroutputwindow.cpp index 518551185a7..a953abc502a 100644 --- a/src/plugins/debugger/debuggeroutputwindow.cpp +++ b/src/plugins/debugger/debuggeroutputwindow.cpp @@ -68,6 +68,7 @@ public: DebuggerPane(QWidget *parent) : QPlainTextEdit(parent) { + setMaximumBlockCount(100000); m_clearContentsAction = new QAction(this); m_clearContentsAction->setText(tr("Clear contents")); m_clearContentsAction->setEnabled(true); -- GitLab