From 07565f155f3e0cb3a1ed961a0723f94d9b4e85dd Mon Sep 17 00:00:00 2001 From: Daniel Teske Date: Mon, 15 Oct 2012 15:21:28 +0200 Subject: [PATCH] CompileOutputWindow: Allow for 100k lines Change-Id: Ic7c0d9fb564d9d018a9938af31091678c9e355d0 Reviewed-by: Tobias Hunger --- 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 af94992f8a9..0d8d1766bd5 100644 --- a/src/plugins/projectexplorer/compileoutputwindow.cpp +++ b/src/plugins/projectexplorer/compileoutputwindow.cpp @@ -57,7 +57,7 @@ using namespace ProjectExplorer; using namespace ProjectExplorer::Internal; namespace { -const int MAX_LINECOUNT = 50000; +const int MAX_LINECOUNT = 100000; } namespace ProjectExplorer {