|
|
@ -206,13 +206,12 @@ ModuleManager::loadModules()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
ModuleSystem::Action currentAction = modulePhase.first;
|
|
|
|
ModuleSystem::Action currentAction = modulePhase.first;
|
|
|
|
|
|
|
|
|
|
|
|
foreach ( const QString& moduleEntry, modulePhase.second )
|
|
|
|
for ( const auto& instanceKey : modulePhase.second )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
auto instanceKey = ModuleSystem::InstanceKey::fromString( moduleEntry );
|
|
|
|
|
|
|
|
if ( !instanceKey.isValid() )
|
|
|
|
if ( !instanceKey.isValid() )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
cError() << "Wrong module entry format for module" << moduleEntry;
|
|
|
|
cError() << "Wrong module entry format for module" << instanceKey;
|
|
|
|
failedModules.append( moduleEntry );
|
|
|
|
failedModules.append( instanceKey.toString() );
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|