Android: Use FilePath

Change-Id: Ia1cf2a615f0de70038a575f851572e944a9797df
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Artem Sokolovskii
2021-09-15 15:16:56 +02:00
parent 905325358a
commit 2d22dbe612
5 changed files with 55 additions and 41 deletions

View File

@@ -872,8 +872,8 @@ void AndroidSettingsWidget::downloadSdk()
if (m_javaSummary->allRowsOk()) {
auto javaPath = m_ui.OpenJDKLocationPathChooser->filePath();
m_sdkDownloader.downloadAndExtractSdk(
javaPath.toString(),
m_ui.SDKLocationPathChooser->filePath().cleanPath().toString());
javaPath,
m_ui.SDKLocationPathChooser->filePath().cleanPath());
}
}
}