different names
This commit is contained in:
parent
a79575afe8
commit
f267410dbb
@ -427,7 +427,7 @@ UsersPage::setAutologinDefault( bool checked )
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
UsersPage::setBoxReusePassword( bool checked )
|
UsersPage::setReusePasswordDefault( bool checked )
|
||||||
{
|
{
|
||||||
ui->checkBoxReusePassword->setChecked( checked );
|
ui->checkBoxReusePassword->setChecked( checked );
|
||||||
}
|
}
|
||||||
|
@ -46,7 +46,7 @@ public:
|
|||||||
|
|
||||||
void setShowRootPassword( bool show );
|
void setShowRootPassword( bool show );
|
||||||
void setAutologinDefault( bool checked );
|
void setAutologinDefault( bool checked );
|
||||||
void setBoxReusePassword( bool checked );
|
void setReusePasswordDefault( bool checked );
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
void onFullNameTextEdited( const QString& );
|
void onFullNameTextEdited( const QString& );
|
||||||
|
@ -163,7 +163,7 @@ UsersViewStep::setConfigurationMap( const QVariantMap& configurationMap )
|
|||||||
if ( configurationMap.contains( "doReusePassword" ) &&
|
if ( configurationMap.contains( "doReusePassword" ) &&
|
||||||
configurationMap.value( "doReusePassword" ).type() == QVariant::Bool )
|
configurationMap.value( "doReusePassword" ).type() == QVariant::Bool )
|
||||||
{
|
{
|
||||||
m_widget->setBoxReusePassword( configurationMap.value( "doReusePassword" ).toBool() );
|
m_widget->setReusePasswordDefault( configurationMap.value( "doReusePassword" ).toBool() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user