From e79aa31372017234cab2a46c9b4b3a9d019f98ad Mon Sep 17 00:00:00 2001 From: kervala Date: Mon, 16 May 2016 14:53:19 +0200 Subject: [PATCH] Changed: Call accept() or reject() depending on next action --- .../tools/client/ryzom_installer/src/operationdialog.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp index 233d64fdd..02b1c0ded 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp @@ -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)