forked from qt-creator/qt-creator
Utils: Remove FilePath::isWritablePath() uses
And fix remaining users. Change-Id: I41c27908f2e9f1e253d0b51830ba351b29a84ec5 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -919,7 +919,7 @@ bool AndroidConfig::allEssentialsInstalled(AndroidSdkManager *sdkManager)
|
||||
bool AndroidConfig::sdkToolsOk() const
|
||||
{
|
||||
bool exists = sdkLocation().exists();
|
||||
bool writable = sdkLocation().isWritablePath();
|
||||
bool writable = sdkLocation().isWritableDir();
|
||||
bool sdkToolsExist = !sdkToolsVersion().isNull();
|
||||
return exists && writable && sdkToolsExist;
|
||||
}
|
||||
|
Reference in New Issue
Block a user