BaseQtVersion: Have examplesPath() return a FilePath

Change-Id: I6b37345022d7cdba4aef0af0ca2a825c8606062c
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Tobias Hunger
2019-09-30 15:44:52 +02:00
parent 9c84c6b271
commit 3404a44ee1
3 changed files with 6 additions and 7 deletions

View File

@@ -578,7 +578,7 @@ QStringList ExampleSetModel::exampleSources(QString *examplesInstallPath, QStrin
foreach (BaseQtVersion *version, QtVersionManager::versions()) {
if (version->uniqueId() == qtId) {
manifestScanPath = version->documentationPath();
examplesPath = version->examplesPath();
examplesPath = version->examplesPath().toString();
demosPath = version->demosPath();
break;
}