Skip to content
Snippets Groups Projects
Commit 2de9de7e authored by Alexander Drozdov's avatar Alexander Drozdov Committed by Daniel Teske
Browse files

Fix loading project settings


Incorrect conversion from the Variant to the String is fixed.

Change-Id: I082cdbeee1568d0b6b567232b50419d76572a197
Task-number: QTCREATORBUG-14404
Reviewed-by: default avatarhjk <hjk@theqtcompany.com>
Reviewed-by: default avatarTobias Hunger <tobias.hunger@theqtcompany.com>
parent a44c403b
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment