mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
Changed: Emit done when an operation is finished
This commit is contained in:
parent
cbb05e8bfd
commit
c67a8b7d0e
1 changed files with 5 additions and 0 deletions
|
@ -72,6 +72,7 @@ COperationDialog::COperationDialog():QDialog(), m_aborting(false)
|
|||
connect(this, SIGNAL(progress(qint64, QString)), SLOT(onProgressProgress(qint64, QString)));
|
||||
connect(this, SIGNAL(success(qint64)), SLOT(onProgressSuccess(qint64)));
|
||||
connect(this, SIGNAL(fail(QString)), SLOT(onProgressFail(QString)));
|
||||
connect(this, SIGNAL(done()), SLOT(onDone()));
|
||||
|
||||
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
||||
}
|
||||
|
@ -308,6 +309,8 @@ void COperationDialog::copyServerFiles()
|
|||
else
|
||||
{
|
||||
}
|
||||
|
||||
emit done();
|
||||
}
|
||||
|
||||
void COperationDialog::copyProfileFiles()
|
||||
|
@ -342,6 +345,8 @@ void COperationDialog::copyProfileFiles()
|
|||
else
|
||||
{
|
||||
}
|
||||
|
||||
emit done();
|
||||
}
|
||||
|
||||
void COperationDialog::extractBnpClient()
|
||||
|
|
Loading…
Reference in a new issue