From 0710769d6ece1a79bda8d9f42162fc13431f777d Mon Sep 17 00:00:00 2001 From: dt <qtc-committer@nokia.com> Date: Wed, 11 Aug 2010 15:34:32 +0200 Subject: [PATCH] Bump limit in compile output to 50k A project of qt's size generates 13k of output. That's without cleaning and a project which compiles mostly warning free. So expecting 50.000 of output seems reasonable, might even be a little too low. --- src/plugins/projectexplorer/compileoutputwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/compileoutputwindow.cpp b/src/plugins/projectexplorer/compileoutputwindow.cpp index 3b5def555d7..57930a76262 100644 --- a/src/plugins/projectexplorer/compileoutputwindow.cpp +++ b/src/plugins/projectexplorer/compileoutputwindow.cpp @@ -50,7 +50,7 @@ using namespace ProjectExplorer; using namespace ProjectExplorer::Internal; namespace { -const int MAX_LINECOUNT = 10000; +const int MAX_LINECOUNT = 50000; } CompileOutputWindow::CompileOutputWindow(BuildManager * /*bm*/) -- GitLab