aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Mba.Core/BootstrapperApplication.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-03-02 15:11:58 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-03-02 16:28:29 -0600
commit5f4829e678c9c5cd5e581b0075cfa4a6b263c66e (patch)
tree444b4996e2213d825910d53de1a520c4ef57b2a1 /src/WixToolset.Mba.Core/BootstrapperApplication.cs
parent022beff26b46c7808eefacfebccfc1fcb5aa5256 (diff)
downloadwix-5f4829e678c9c5cd5e581b0075cfa4a6b263c66e.tar.gz
wix-5f4829e678c9c5cd5e581b0075cfa4a6b263c66e.tar.bz2
wix-5f4829e678c9c5cd5e581b0075cfa4a6b263c66e.zip
Integrate OnUnregisterBegin changes in Burn headers.
Diffstat (limited to 'src/WixToolset.Mba.Core/BootstrapperApplication.cs')
-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