[libcalamaresui] Remove the signal done() from ViewStep

- The signal is emitted, generally from next(), but not actually used.
This commit is contained in:
Adriaan de Groot 2019-02-25 07:34:40 -05:00
parent e50c2bcb44
commit 08565b5f17
14 changed files with 0 additions and 18 deletions

View file

@ -294,23 +294,19 @@ PartitionViewStep::next()
}
else if ( m_choicePage->currentChoice() == ChoicePage::Erase )
{
emit done();
return;
}
else if ( m_choicePage->currentChoice() == ChoicePage::Alongside )
{
emit done();
return;
}
else if ( m_choicePage->currentChoice() == ChoicePage::Replace )
{
emit done();
return;
}
cDebug() << "Choice applied: " << m_choicePage->currentChoice();
return;
}
emit done();
}