Android: Fix build with Qt 4.8

Change-Id: I28c96b1d02735c687be4d3626cce2395e710814b
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
This commit is contained in:
Andre Hartmann
2013-10-01 19:53:22 +02:00
committed by Christian Kandeler
parent e0ddfe1a5f
commit a9016b371a

View File

@@ -97,7 +97,7 @@ void AndroidExtraLibraryListModel::addEntries(const QStringList &list)
m_entries += QDir(m_project->projectDirectory()).relativeFilePath(path);
Qt4ProjectManager::Qt4ProFileNode *node = m_project->rootQt4ProjectNode();
node->setProVariable(QLatin1String("ANDROID_EXTRA_LIBS"), m_entries.join(QLatin1Char(' ')));
node->setProVariable(QLatin1String("ANDROID_EXTRA_LIBS"), m_entries.join(QLatin1String(" ")));
endInsertRows();
}
@@ -127,5 +127,5 @@ void AndroidExtraLibraryListModel::removeEntries(const QModelIndexList &list)
}
Qt4ProjectManager::Qt4ProFileNode *node = m_project->rootQt4ProjectNode();
node->setProVariable(QLatin1String("ANDROID_EXTRA_LIBS"), m_entries.join(QLatin1Char(' ')));
node->setProVariable(QLatin1String("ANDROID_EXTRA_LIBS"), m_entries.join(QLatin1String(" ")));
}