|
|
@ -219,14 +219,14 @@ ModuleManager::loadModules()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
auto findCustomInstance =
|
|
|
|
auto findCustomInstance =
|
|
|
|
[ customInstances ]( const QString& moduleName,
|
|
|
|
[ customInstances ]( const QString& module,
|
|
|
|
const QString& instanceId ) -> int
|
|
|
|
const QString& id) -> int
|
|
|
|
{
|
|
|
|
{
|
|
|
|
for ( int i = 0; i < customInstances.count(); ++i )
|
|
|
|
for ( int i = 0; i < customInstances.count(); ++i )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
auto thisInstance = customInstances[ i ];
|
|
|
|
auto thisInstance = customInstances[ i ];
|
|
|
|
if ( thisInstance.value( "module" ) == moduleName &&
|
|
|
|
if ( thisInstance.value( "module" ) == module &&
|
|
|
|
thisInstance.value( "id" ) == instanceId )
|
|
|
|
thisInstance.value( "id" ) == id )
|
|
|
|
return i;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|