Make the buffer size for the Application Output window configurable

Task-number: QTCREATORBUG-4531
This commit is contained in:
con
2011-04-29 09:36:04 +02:00
parent f6eef7fa0f
commit 5e6d92dd66
9 changed files with 88 additions and 17 deletions

View File

@@ -68,6 +68,7 @@ CompileOutputWindow::CompileOutputWindow(BuildManager * /*bm*/)
m_outputWindow->setWindowIcon(QIcon(QLatin1String(Qt4ProjectManager::Constants::ICON_WINDOW)));
m_outputWindow->setReadOnly(true);
m_outputWindow->setUndoRedoEnabled(false);
m_outputWindow->setMaxLineCount(MAX_LINECOUNT);
Aggregation::Aggregate *agg = new Aggregation::Aggregate;
agg->add(m_outputWindow);
@@ -142,7 +143,7 @@ void CompileOutputWindow::appendText(const QString &text, ProjectExplorer::Build
}
m_outputWindow->appendText(text, textFormat, MAX_LINECOUNT);
m_outputWindow->appendText(text, textFormat);
}
void CompileOutputWindow::clearContents()