Remove useless code

Introduced with 4fbc020ddc

Change-Id: I28b6b7ea0cfdcc670e83e1114c546d00231a7027
Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
This commit is contained in:
Christian Stenger
2015-08-06 13:58:53 +02:00
parent 828b61e941
commit 565712d84b
2 changed files with 0 additions and 12 deletions

View File

@@ -59,7 +59,6 @@ TestCodeParser::TestCodeParser(TestTreeModel *parent)
m_fullUpdatePostponed(false),
m_partialUpdatePostponed(false),
m_dirty(false),
m_waitForParseTaskFinish(false),
m_singleShotScheduled(false),
m_parserState(Disabled)
{
@@ -549,7 +548,6 @@ void TestCodeParser::onQmlDocumentUpdated(const QmlJS::Document::Ptr &document)
void TestCodeParser::onStartupProjectChanged(ProjectExplorer::Project *)
{
if (m_parserState == FullParse || m_parserState == PartialParse) {
m_waitForParseTaskFinish = true;
Core::ProgressManager::instance()->cancelTasks(Constants::TASK_PARSE);
} else {
clearCache();
@@ -712,8 +710,6 @@ void TestCodeParser::onTaskStarted(Core::Id type)
{
if (type == CppTools::Constants::TASK_INDEX)
m_codeModelParsing = true;
else if (type == Constants::TASK_PARSE)
m_waitForParseTaskFinish = true;
}
void TestCodeParser::onAllTasksFinished(Core::Id type)
@@ -723,13 +719,6 @@ void TestCodeParser::onAllTasksFinished(Core::Id type)
return;
m_codeModelParsing = false;
if (m_waitForParseTaskFinish && type == Constants::TASK_PARSE) {
m_waitForParseTaskFinish = false;
clearCache();
emitUpdateTestTree();
return;
}
// avoid illegal parser state if respective widgets became hidden while parsing
setState(Idle);
}