Commit f10eb0bf authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

msi: EndDialog with Ignore should not be an error.

parent dc8ea1b3
...@@ -104,7 +104,7 @@ static UINT ControlEvent_EndDialog(MSIPACKAGE* package, LPCWSTR argument, ...@@ -104,7 +104,7 @@ static UINT ControlEvent_EndDialog(MSIPACKAGE* package, LPCWSTR argument,
else if (lstrcmpW(argument, szRetry) == 0) else if (lstrcmpW(argument, szRetry) == 0)
package->CurrentInstallState = ERROR_INSTALL_SUSPEND; package->CurrentInstallState = ERROR_INSTALL_SUSPEND;
else if (lstrcmpW(argument, szIgnore) == 0) else if (lstrcmpW(argument, szIgnore) == 0)
package->CurrentInstallState = -1; package->CurrentInstallState = ERROR_SUCCESS;
else if (lstrcmpW(argument, szReturn) == 0) else if (lstrcmpW(argument, szReturn) == 0)
{ {
msi_dialog *parent = msi_dialog_get_parent(dialog); msi_dialog *parent = msi_dialog_get_parent(dialog);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment