Fix loading project settings

Incorrect conversion from the Variant to the String is fixed.

Change-Id: I082cdbeee1568d0b6b567232b50419d76572a197
Task-number: QTCREATORBUG-14404
Reviewed-by: hjk <hjk@theqtcompany.com>
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Alexander Drozdov
2015-05-06 13:00:15 +10:00
committed by Daniel Teske
parent a44c403b5f
commit 2de9de7ef3

View File

@@ -217,7 +217,7 @@ void ArgumentsAspect::setArguments(const QString &arguments)
void ArgumentsAspect::fromMap(const QVariantMap &map)
{
m_arguments = map.value(m_key).toBool();
m_arguments = map.value(m_key).toString();
}
void ArgumentsAspect::toMap(QVariantMap &map) const