Changed: Call accept() or reject() depending on next action
This commit is contained in:
parent
c67a8b7d0e
commit
1013d0c281
1 changed files with 5 additions and 1 deletions
|
@ -139,6 +139,10 @@ void COperationDialog::processNextStep()
|
|||
createDefaultShortcuts();
|
||||
break;
|
||||
|
||||
case CConfigFile::Done:
|
||||
accept();
|
||||
break;
|
||||
|
||||
default:
|
||||
// cases already managed in main.cpp
|
||||
break;
|
||||
|
@ -221,7 +225,7 @@ void COperationDialog::onProgressStop()
|
|||
m_button->progress()->hide();
|
||||
#endif
|
||||
|
||||
close();
|
||||
reject();
|
||||
}
|
||||
|
||||
void COperationDialog::onProgressProgress(qint64 current, const QString &filename)
|
||||
|
|
Loading…
Reference in a new issue