summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2015-02-27 14:36:14 +0100
committerChristian Stenger <christian.stenger@theqtcompany.com>2015-02-27 15:42:09 +0200
commit690f15c1029fca5917aca3279da2c2da90dc71f3 (patch)
tree09a050fde5e58070a73a4bd8c585bace40f68aec
parent6a3b43fef023d318eef1706bf61bf9bcb0829e16 (diff)
downloadqt-creator-690f15c1029fca5917aca3279da2c2da90dc71f3.tar.gz
Fix names of local variables
Change-Id: I853ad97ff54d28714263f1431838dbe8d71f2fe2 Reviewed-by: Oliver Wolff <oliver.wolff@theqtcompany.com>
-rw-r--r--plugins/autotest/testcodeparser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/autotest/testcodeparser.cpp b/plugins/autotest/testcodeparser.cpp
index cd18623cad..3cd3ea518a 100644
--- a/plugins/autotest/testcodeparser.cpp
+++ b/plugins/autotest/testcodeparser.cpp
@@ -289,10 +289,10 @@ static QList<QmlJS::Document::Ptr> scanDirectoryForQuickTestQmlFiles(const QStri
QFutureInterface<void> future;
QmlJS::PathsAndLanguages paths;
paths.maybeInsert(Utils::FileName::fromString(srcDir), QmlJS::Dialect::Qml);
- const bool dontEmitDocumentChanges = false;
- const bool notOnlyTheLib = false;
+ const bool emitDocumentChanges = false;
+ const bool onlyTheLib = false;
QmlJS::ModelManagerInterface::importScan(future, qmlJsMM->workingCopy(), paths, qmlJsMM,
- dontEmitDocumentChanges, notOnlyTheLib);
+ emitDocumentChanges, onlyTheLib);
const QmlJS::Snapshot snapshot = QmlJSTools::Internal::ModelManager::instance()->snapshot();
QDirIterator it(srcDir, QDir::Dirs | QDir::NoDotAndDotDot, QDirIterator::Subdirectories);