forked from qt-creator/qt-creator
Android: Avoid one use of ProcessArgs::splitArgs()
Replaced by the more harmless joinArgs in a compatibility settings code path for now. Change-Id: Id6d94faea26002f4a2641b5824d97e09a783b720 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -123,8 +123,8 @@ public:
|
||||
QString toolchainHost(const QtSupport::QtVersion *qtVersion) const;
|
||||
static QString toolchainHostFromNdk(const Utils::FilePath &ndkPath);
|
||||
|
||||
QStringList emulatorArgs() const;
|
||||
void setEmulatorArgs(const QStringList &args);
|
||||
QString emulatorArgs() const;
|
||||
void setEmulatorArgs(const QString &args);
|
||||
|
||||
bool automaticKitCreation() const;
|
||||
void setAutomaticKitCreation(bool b);
|
||||
@@ -196,7 +196,7 @@ private:
|
||||
Utils::FilePath m_openJDKLocation;
|
||||
Utils::FilePath m_keystoreLocation;
|
||||
Utils::FilePath m_openSslLocation;
|
||||
QStringList m_emulatorArgs;
|
||||
QString m_emulatorArgs;
|
||||
bool m_automaticKitCreation = true;
|
||||
QUrl m_sdkToolsUrl;
|
||||
QByteArray m_sdkToolsSha256;
|
||||
|
||||
Reference in New Issue
Block a user