forked from qt-creator/qt-creator
Don't use qApp->processEvents() if not necessary
Change-Id: I2e92341530f3d79f9c0b47f2007750582db9a361 Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This commit is contained in:
@@ -51,7 +51,7 @@ signals:
|
||||
void requestStopTestRun();
|
||||
|
||||
public slots:
|
||||
void runTests();
|
||||
void prepareToRunTests();
|
||||
|
||||
private slots:
|
||||
void buildProject(ProjectExplorer::Project *project);
|
||||
@@ -59,13 +59,14 @@ private slots:
|
||||
void onFinished();
|
||||
|
||||
private:
|
||||
void runTests();
|
||||
explicit TestRunner(QObject *parent = 0);
|
||||
|
||||
QList<TestConfiguration *> m_selectedTests;
|
||||
bool m_building;
|
||||
bool m_buildSucceeded;
|
||||
bool m_executingTests;
|
||||
|
||||
// temporarily used if building before running is necessary
|
||||
QMetaObject::Connection m_buildConnect;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user