mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-27 17:35:37 -04:00
[partition] Unmap mount-point special strings
- Reverse "(no mount point)" to the empty string - Provide convenience pointer-taking function
This commit is contained in:
parent
a4997c4be8
commit
a49c39bb53
4 changed files with 24 additions and 8 deletions
|
@ -154,7 +154,7 @@ EditExistingPartitionDialog::setupFlagsList()
|
|||
void
|
||||
EditExistingPartitionDialog::applyChanges( PartitionCoreModule* core )
|
||||
{
|
||||
PartitionInfo::setMountPoint( m_partition, m_ui->mountPointComboBox->currentText() );
|
||||
PartitionInfo::setMountPoint( m_partition, selectedMountPoint(m_ui->mountPointComboBox) );
|
||||
|
||||
qint64 newFirstSector = m_partitionSizeController->firstSector();
|
||||
qint64 newLastSector = m_partitionSizeController->lastSector();
|
||||
|
@ -294,9 +294,7 @@ EditExistingPartitionDialog::updateMountPointPicker()
|
|||
void
|
||||
EditExistingPartitionDialog::checkMountPointSelection()
|
||||
{
|
||||
const QString& selection = m_ui->mountPointComboBox->currentText();
|
||||
|
||||
if ( m_usedMountPoints.contains( selection ) )
|
||||
if ( m_usedMountPoints.contains( selectedMountPoint( m_ui->mountPointComboBox ) ) )
|
||||
{
|
||||
m_ui->labelMountPoint->setText( tr( "Mountpoint already in use. Please select another one." ) );
|
||||
m_ui->buttonBox->button( QDialogButtonBox::Ok )->setEnabled( false );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue