[partition] More missing ;

This commit is contained in:
Adriaan de Groot 2021-03-16 16:11:02 +01:00
parent 2b4bc7adf4
commit 186d32ebee
5 changed files with 5 additions and 5 deletions

View File

@ -54,7 +54,7 @@ DeviceInfoWidget::DeviceInfoWidget( QWidget* parent )
m_ptIcon->setPalette( palette );
m_ptLabel->setPalette( palette );
CALAMARES_RETRANSLATE_SLOT( &DeviceInfoWidget::retranslateUi )
CALAMARES_RETRANSLATE_SLOT( &DeviceInfoWidget::retranslateUi );
}

View File

@ -35,7 +35,7 @@ EncryptWidget::EncryptWidget( QWidget* parent )
setFixedHeight( m_ui->m_passphraseLineEdit->height() ); // Avoid jumping up and down
updateState();
CALAMARES_RETRANSLATE_SLOT( &EncryptWidget::retranslate )
CALAMARES_RETRANSLATE_SLOT( &EncryptWidget::retranslate );
}

View File

@ -117,7 +117,7 @@ PartitionPage::PartitionPage( PartitionCoreModule* core, QWidget* parent )
m_ui->label_3->hide();
}
CALAMARES_RETRANSLATE( m_ui->retranslateUi( this ); )
CALAMARES_RETRANSLATE( m_ui->retranslateUi( this ); );
}
PartitionPage::~PartitionPage() {}

View File

@ -67,7 +67,7 @@ PartitionViewStep::PartitionViewStep( QObject* parent )
m_waitingWidget = new WaitingWidget( QString() );
m_widget->addWidget( m_waitingWidget );
CALAMARES_RETRANSLATE( m_waitingWidget->setText( tr( "Gathering system information..." ) ); )
CALAMARES_RETRANSLATE( m_waitingWidget->setText( tr( "Gathering system information..." ) ); );
m_core = new PartitionCoreModule( this ); // Unusable before init is complete!
// We're not done loading, but we need the configuration map first.

View File

@ -50,7 +50,7 @@ ReplaceWidget::ReplaceWidget( PartitionCoreModule* core, QComboBox* devicesCombo
updateFromCurrentDevice( devicesComboBox );
} );
CALAMARES_RETRANSLATE( onPartitionSelected(); )
CALAMARES_RETRANSLATE( onPartitionSelected(); );
}