aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Mba.Core/BootstrapperApplication.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Mba.Core/BootstrapperApplication.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Mba.Core/BootstrapperApplication.cs b/src/WixToolset.Mba.Core/BootstrapperApplication.cs
index 43e69e81..1812c80b 100644
--- a/src/WixToolset.Mba.Core/BootstrapperApplication.cs
+++ b/src/WixToolset.Mba.Core/BootstrapperApplication.cs
@@ -1529,12 +1529,12 @@ namespace WixToolset.Mba.Core
1529 return args.HResult; 1529 return args.HResult;
1530 } 1530 }
1531 1531
1532 int IBootstrapperApplication.OnUnregisterBegin(ref bool fCancel) 1532 int IBootstrapperApplication.OnUnregisterBegin(bool fKeepRegistration, ref bool fForceKeepRegistration)
1533 { 1533 {
1534 UnregisterBeginEventArgs args = new UnregisterBeginEventArgs(fCancel); 1534 UnregisterBeginEventArgs args = new UnregisterBeginEventArgs(fKeepRegistration, fForceKeepRegistration);
1535 this.OnUnregisterBegin(args); 1535 this.OnUnregisterBegin(args);
1536 1536
1537 fCancel = args.Cancel; 1537 fForceKeepRegistration = args.ForceKeepRegistration;
1538 return args.HResult; 1538 return args.HResult;
1539 } 1539 }
1540 1540