mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
msi: EndDialog with Ignore should not be an error.
This commit is contained in:
parent
dc8ea1b3e4
commit
f10eb0bfa2
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ static UINT ControlEvent_EndDialog(MSIPACKAGE* package, LPCWSTR argument,
|
|||
else if (lstrcmpW(argument, szRetry) == 0)
|
||||
package->CurrentInstallState = ERROR_INSTALL_SUSPEND;
|
||||
else if (lstrcmpW(argument, szIgnore) == 0)
|
||||
package->CurrentInstallState = -1;
|
||||
package->CurrentInstallState = ERROR_SUCCESS;
|
||||
else if (lstrcmpW(argument, szReturn) == 0)
|
||||
{
|
||||
msi_dialog *parent = msi_dialog_get_parent(dialog);
|
||||
|
|
Loading…
Reference in a new issue