FinishedPage: show message instead of details on failure

This commit is contained in:
Adriaan de Groot 2017-07-04 08:16:28 -04:00 committed by Philip
parent a5604aa978
commit 843706e38d

View File

@ -108,12 +108,11 @@ FinishedPage::focusInEvent( QFocusEvent* e )
void
FinishedPage::onInstallationFailed( const QString& message, const QString& details )
{
Q_UNUSED( message );
Q_UNUSED( details );
ui->mainText->setText( tr( "<h1>Installation Failed</h1><br/>"
"%1 has not been installed on your computer.<br/>"
"The error message was: %2." )
.arg(Calamares::Branding::instance()->
string( Calamares::Branding::VersionedName ) )
.arg( details ) );
.arg( *Calamares::Branding::VersionedName )
.arg( message ) );
setRestartNowEnabled( false );
}