forked from qt-creator/qt-creator
Compile fix
Change-Id: I2807efd386b86247a4fbf67151cd6d3fb98c3b22 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com> Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
committed by
Daniel Teske
parent
a19ed6063a
commit
420eefd884
@@ -777,7 +777,7 @@ QString AndroidManager::loadLocal(ProjectExplorer::Target *target, int apiLevel,
|
|||||||
|
|
||||||
// The next loop requires all library names to end with a ":" so we append one
|
// The next loop requires all library names to end with a ":" so we append one
|
||||||
// to the end after joining.
|
// to the end after joining.
|
||||||
localLibs = dependencyLibs.join(QLatin1Char(':')) + QLatin1Char(':');
|
localLibs = dependencyLibs.join(QLatin1String(":")) + QLatin1Char(':');
|
||||||
foreach (QString replacedLib, replacedLibs)
|
foreach (QString replacedLib, replacedLibs)
|
||||||
localLibs.remove(replacedLib + QLatin1Char(':'));
|
localLibs.remove(replacedLib + QLatin1Char(':'));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user