mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Fixed: Return 0 if cancel installation
This commit is contained in:
parent
9bd7765c25
commit
68755139e2
1 changed files with 2 additions and 2 deletions
|
@ -232,8 +232,8 @@ int main(int argc, char *argv[])
|
|||
|
||||
dialog.setSelectedComponents(components);
|
||||
|
||||
// TODO: check real return codes from Uninstallers
|
||||
if (!dialog.exec()) return 1;
|
||||
// exit if press Cancel button or close dialog
|
||||
if (!dialog.exec()) return 0;
|
||||
|
||||
components = dialog.getSelectedCompenents();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue