summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2015-07-24 13:48:30 +0200
committerChristian Stenger <christian.stenger@theqtcompany.com>2015-08-05 08:15:44 +0300
commit8f738836ea0d368f44fa575adf64284cff1aee9b (patch)
tree4adc5047a3f65b24ea9f152e3c55c3262d53e14b
parentc0f76a26581ff7b126e65f305dfa70471bd3db19 (diff)
downloadqt-creator-8f738836ea0d368f44fa575adf64284cff1aee9b.tar.gz
Move signal emission to where it belongs
Change-Id: I85dc5793887e3a26bc86fc6615aa3167054ae58a Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
-rw-r--r--plugins/autotest/testcodeparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/autotest/testcodeparser.cpp b/plugins/autotest/testcodeparser.cpp
index edf5102419..a437bd4d15 100644
--- a/plugins/autotest/testcodeparser.cpp
+++ b/plugins/autotest/testcodeparser.cpp
@@ -123,7 +123,6 @@ void TestCodeParser::updateTestTree()
m_fullUpdatePostponed = false;
clearCache();
- emit cacheCleared();
scanForTests();
}
@@ -659,6 +658,7 @@ void TestCodeParser::clearCache()
m_cppDocMap.clear();
m_quickDocMap.clear();
m_unnamedQuickDocList.clear();
+ emit cacheCleared();
}
void TestCodeParser::removeTestsIfNecessary(const QString &fileName)