forked from qt-creator/qt-creator
AutoTest: Use Utils::FilePath for files and directories
Still some missing bits as some QString members had different meanings depending on their context. Change-Id: Ib48eab54498974a26bbd5123cbffeefee5f7e79c Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -35,7 +35,7 @@ class BoostTestTreeItem;
|
||||
class BoostTestResult : public TestResult
|
||||
{
|
||||
public:
|
||||
BoostTestResult(const QString &id, const QString &projectFile, const QString &name);
|
||||
BoostTestResult(const QString &id, const Utils::FilePath &projectFile, const QString &name);
|
||||
const QString outputString(bool selected) const override;
|
||||
|
||||
bool isDirectParentOf(const TestResult *other, bool *needsIntermediate) const override;
|
||||
@@ -45,7 +45,7 @@ public:
|
||||
private:
|
||||
bool matches(const BoostTestTreeItem *item) const;
|
||||
|
||||
QString m_projectFile;
|
||||
Utils::FilePath m_projectFile;
|
||||
QString m_testSuite;
|
||||
QString m_testCase;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user