From 5f4829e678c9c5cd5e581b0075cfa4a6b263c66e Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Tue, 2 Mar 2021 15:11:58 -0600 Subject: Integrate OnUnregisterBegin changes in Burn headers. --- src/WixToolset.Mba.Core/BootstrapperApplication.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/WixToolset.Mba.Core/BootstrapperApplication.cs') 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 return args.HResult; } - int IBootstrapperApplication.OnUnregisterBegin(ref bool fCancel) + int IBootstrapperApplication.OnUnregisterBegin(bool fKeepRegistration, ref bool fForceKeepRegistration) { - UnregisterBeginEventArgs args = new UnregisterBeginEventArgs(fCancel); + UnregisterBeginEventArgs args = new UnregisterBeginEventArgs(fKeepRegistration, fForceKeepRegistration); this.OnUnregisterBegin(args); - fCancel = args.Cancel; + fForceKeepRegistration = args.ForceKeepRegistration; return args.HResult; } -- cgit v1.2.3-55-g6feb