mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-17 13:01:42 +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);
|
dialog.setSelectedComponents(components);
|
||||||
|
|
||||||
// TODO: check real return codes from Uninstallers
|
// exit if press Cancel button or close dialog
|
||||||
if (!dialog.exec()) return 1;
|
if (!dialog.exec()) return 0;
|
||||||
|
|
||||||
components = dialog.getSelectedCompenents();
|
components = dialog.getSelectedCompenents();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue