summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2015-02-27 14:16:07 +0100
committerChristian Stenger <christian.stenger@theqtcompany.com>2015-02-27 15:28:06 +0200
commit6a3b43fef023d318eef1706bf61bf9bcb0829e16 (patch)
treeb9f091a4da999b7c97f8b46a17ccbc3825eb2682
parent2b8d6c5fc4af14c5e2377d36b01f61d485c700d7 (diff)
downloadqt-creator-6a3b43fef023d318eef1706bf61bf9bcb0829e16.tar.gz
Fix camel-case of *postponed*
Change-Id: Ie00c35bceba3b772f68e2d9b665af8427a105433 Reviewed-by: Oliver Wolff <oliver.wolff@theqtcompany.com>
-rw-r--r--plugins/autotest/testcodeparser.cpp94
-rw-r--r--plugins/autotest/testcodeparser.h6
2 files changed, 50 insertions, 50 deletions
diff --git a/plugins/autotest/testcodeparser.cpp b/plugins/autotest/testcodeparser.cpp
index 8c719361fa..cd18623cad 100644
--- a/plugins/autotest/testcodeparser.cpp
+++ b/plugins/autotest/testcodeparser.cpp
@@ -56,12 +56,12 @@ TestCodeParser::TestCodeParser(TestTreeModel *parent)
: QObject(parent),
m_model(parent),
m_parserEnabled(true),
- m_fullUpdatePostPoned(false),
- m_partialUpdatePostPoned(false),
+ m_fullUpdatePostponed(false),
+ m_partialUpdatePostponed(false),
m_dirty(true),
m_parserState(Disabled)
{
- // connect to ProgressManager to post-pone test parsing when CppModelManager is parsing
+ // connect to ProgressManager to postpone test parsing when CppModelManager is parsing
auto progressManager = qobject_cast<Core::ProgressManager *>(Core::ProgressManager::instance());
connect(progressManager, &Core::ProgressManager::taskStarted,
this, &TestCodeParser::onTaskStarted);
@@ -88,10 +88,10 @@ void TestCodeParser::setState(State state)
{
m_parserState = state;
if (m_parserState == Disabled) {
- m_fullUpdatePostPoned = m_partialUpdatePostPoned = false;
- m_postPonedFiles.clear();
+ m_fullUpdatePostponed = m_partialUpdatePostponed = false;
+ m_postponedFiles.clear();
} else if (m_parserState == Idle && m_dirty && currentProject()) {
- scanForTests(m_postPonedFiles.toList());
+ scanForTests(m_postponedFiles.toList());
}
}
@@ -103,14 +103,14 @@ void TestCodeParser::emitUpdateTestTree()
void TestCodeParser::updateTestTree()
{
if (!m_parserEnabled) {
- m_fullUpdatePostPoned = true;
+ m_fullUpdatePostponed = true;
return;
}
if (ProjectExplorer::Project *project = currentProject()) {
if (auto qmakeProject = qobject_cast<QmakeProjectManager::QmakeProject *>(project)) {
if (qmakeProject->asyncUpdateState() != QmakeProjectManager::QmakeProject::Base) {
- m_fullUpdatePostPoned = true;
+ m_fullUpdatePostponed = true;
return;
}
connect(qmakeProject, &QmakeProjectManager::QmakeProject::proFilesEvaluated,
@@ -119,7 +119,7 @@ void TestCodeParser::updateTestTree()
} else
return;
- m_fullUpdatePostPoned = false;
+ m_fullUpdatePostponed = false;
clearCache();
emit cacheCleared();
@@ -475,9 +475,9 @@ void TestCodeParser::handleQtQuickTest(CPlusPlus::Document::Ptr document)
void TestCodeParser::onCppDocumentUpdated(const CPlusPlus::Document::Ptr &document)
{
if (!m_parserEnabled) {
- if (!m_fullUpdatePostPoned) {
- m_partialUpdatePostPoned = true;
- m_postPonedFiles.insert(document->fileName());
+ if (!m_fullUpdatePostponed) {
+ m_partialUpdatePostponed = true;
+ m_postponedFiles.insert(document->fileName());
}
return;
}
@@ -500,9 +500,9 @@ void TestCodeParser::onCppDocumentUpdated(const CPlusPlus::Document::Ptr &docume
void TestCodeParser::onQmlDocumentUpdated(const QmlJS::Document::Ptr &document)
{
if (!m_parserEnabled) {
- if (!m_fullUpdatePostPoned) {
- m_partialUpdatePostPoned = true;
- m_postPonedFiles.insert(document->fileName());
+ if (!m_fullUpdatePostponed) {
+ m_partialUpdatePostponed = true;
+ m_postponedFiles.insert(document->fileName());
}
return;
}
@@ -549,34 +549,34 @@ bool TestCodeParser::postponed(const QStringList &fileList)
case PartialParse:
// partial is running, postponing a full parse
if (fileList.isEmpty()) {
- m_partialUpdatePostPoned = false;
- m_postPonedFiles.clear();
- m_fullUpdatePostPoned = true;
+ m_partialUpdatePostponed = false;
+ m_postponedFiles.clear();
+ m_fullUpdatePostponed = true;
} else {
// partial parse triggered, but full parse is postponed already, ignoring this
- if (m_fullUpdatePostPoned)
+ if (m_fullUpdatePostponed)
return true;
// partial parse triggered, postpone or add current files to already postponed partial
foreach (const QString &file, fileList)
- m_postPonedFiles.insert(file);
- m_partialUpdatePostPoned = true;
+ m_postponedFiles.insert(file);
+ m_partialUpdatePostponed = true;
}
return true;
case FullParse:
// full parse is running, postponing another full parse
if (fileList.isEmpty()) {
- m_partialUpdatePostPoned = false;
- m_postPonedFiles.clear();
- m_fullUpdatePostPoned = true;
+ m_partialUpdatePostponed = false;
+ m_postponedFiles.clear();
+ m_fullUpdatePostponed = true;
} else {
// full parse already postponed, ignoring triggering a partial parse
- if (m_fullUpdatePostPoned) {
+ if (m_fullUpdatePostponed) {
return true;
}
// partial parse triggered, postpone or add current files to already postponed partial
foreach (const QString &file, fileList)
- m_postPonedFiles.insert(file);
- m_partialUpdatePostPoned = true;
+ m_postponedFiles.insert(file);
+ m_partialUpdatePostponed = true;
}
return true;
case Disabled:
@@ -590,14 +590,14 @@ void TestCodeParser::scanForTests(const QStringList &fileList)
if (m_parserState == Disabled) {
m_dirty = true;
if (fileList.isEmpty()) {
- m_fullUpdatePostPoned = true;
- m_partialUpdatePostPoned = false;
- m_postPonedFiles.clear();
+ m_fullUpdatePostponed = true;
+ m_partialUpdatePostponed = false;
+ m_postponedFiles.clear();
} else {
- if (!m_fullUpdatePostPoned) {
- m_partialUpdatePostPoned = true;
+ if (!m_fullUpdatePostponed) {
+ m_partialUpdatePostponed = true;
foreach (const QString &file, fileList)
- m_postPonedFiles.insert(file);
+ m_postponedFiles.insert(file);
}
}
return;
@@ -725,14 +725,14 @@ void TestCodeParser::onAllTasksFinished(Core::Id type)
if (type != CppTools::Constants::TASK_INDEX)
return;
m_parserEnabled = true;
- if (m_fullUpdatePostPoned)
+ if (m_fullUpdatePostponed)
updateTestTree();
- else if (m_partialUpdatePostPoned) {
- m_partialUpdatePostPoned = false;
+ else if (m_partialUpdatePostponed) {
+ m_partialUpdatePostponed = false;
QStringList tmp;
- foreach (const QString &file, m_postPonedFiles)
+ foreach (const QString &file, m_postponedFiles)
tmp << file;
- m_postPonedFiles.clear();
+ m_postponedFiles.clear();
scanForTests(tmp);
}
}
@@ -757,18 +757,18 @@ void TestCodeParser::onFinished()
void TestCodeParser::onPartialParsingFinished()
{
- QTC_ASSERT(m_fullUpdatePostPoned != m_partialUpdatePostPoned
- || ((m_fullUpdatePostPoned || m_partialUpdatePostPoned) == false),
- m_partialUpdatePostPoned = false;m_postPonedFiles.clear(););
- if (m_fullUpdatePostPoned) {
- m_fullUpdatePostPoned = false;
+ QTC_ASSERT(m_fullUpdatePostponed != m_partialUpdatePostponed
+ || ((m_fullUpdatePostponed || m_partialUpdatePostponed) == false),
+ m_partialUpdatePostponed = false;m_postponedFiles.clear(););
+ if (m_fullUpdatePostponed) {
+ m_fullUpdatePostponed = false;
updateTestTree();
- } else if (m_partialUpdatePostPoned) {
- m_partialUpdatePostPoned = false;
+ } else if (m_partialUpdatePostponed) {
+ m_partialUpdatePostponed = false;
QStringList tmp;
- foreach (const QString &file, m_postPonedFiles)
+ foreach (const QString &file, m_postponedFiles)
tmp << file;
- m_postPonedFiles.clear();
+ m_postponedFiles.clear();
scanForTests(tmp);
} else {
m_dirty = false;
diff --git a/plugins/autotest/testcodeparser.h b/plugins/autotest/testcodeparser.h
index d2785766ac..dc313ffa29 100644
--- a/plugins/autotest/testcodeparser.h
+++ b/plugins/autotest/testcodeparser.h
@@ -110,10 +110,10 @@ private:
QMap<QString, TestInfo> m_quickDocMap;
QList<UnnamedQuickTestInfo> m_unnamedQuickDocList;
bool m_parserEnabled;
- bool m_fullUpdatePostPoned;
- bool m_partialUpdatePostPoned;
+ bool m_fullUpdatePostponed;
+ bool m_partialUpdatePostponed;
bool m_dirty;
- QSet<QString> m_postPonedFiles;
+ QSet<QString> m_postponedFiles;
State m_parserState;
};