mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-03 12:25:38 -04:00
Fix build failure seen in the live test.
This commit is contained in:
parent
f2658f5eb0
commit
f84da1e013
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ void NetInstallPage::readGroups( const QByteArray& yamlData )
|
|||
|
||||
for ( YAML::const_iterator it = groups.begin(); it != groups.end(); ++it )
|
||||
{
|
||||
YAML::Node groupDefinition = it->as<YAML::Node>();
|
||||
const YAML::Node groupDefinition = *it;
|
||||
|
||||
QString name( tr( yamlToVariant(groupDefinition["name"]).toByteArray() ) );
|
||||
QString description( tr( yamlToVariant(groupDefinition["description"]).toByteArray() ) );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue