mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-28 01:45:36 -04:00
Better settings format, rename a bit of stuff in module loading.
This commit is contained in:
parent
22ff18f2cc
commit
a09ab36386
6 changed files with 54 additions and 25 deletions
|
@ -69,9 +69,9 @@ ModuleManager::module( const QString& name )
|
|||
|
||||
|
||||
void
|
||||
ModuleManager::loadRequiredModules()
|
||||
ModuleManager::loadModulesPrepare()
|
||||
{
|
||||
QTimer::singleShot( 0, this, SLOT( doLoadModules() ) );
|
||||
QTimer::singleShot( 0, this, SLOT( doLoadModulesPrepare() ) );
|
||||
}
|
||||
|
||||
|
||||
|
@ -134,9 +134,9 @@ ModuleManager::doInit()
|
|||
|
||||
|
||||
void
|
||||
ModuleManager::doLoadModules()
|
||||
ModuleManager::doLoadModulesPrepare()
|
||||
{
|
||||
foreach ( const QString& moduleName, Settings::instance()->viewModulesPrepare() )
|
||||
foreach ( const QString& moduleName, Settings::instance()->modulesPrepare() )
|
||||
{
|
||||
if ( !m_availableModules.contains( moduleName ) )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue