aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h')
-rw-r--r--src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h b/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
index 9d44075b..0f30ff2d 100644
--- a/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
+++ b/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
@@ -13,9 +13,9 @@ namespace Native
13 public ref class TestManagedBootstrapperApplicationFactory : public BaseBootstrapperApplicationFactory 13 public ref class TestManagedBootstrapperApplicationFactory : public BaseBootstrapperApplicationFactory
14 { 14 {
15 protected: 15 protected:
16 virtual IBootstrapperApplication^ Create(Engine^ engine, Command% command) override 16 virtual IBootstrapperApplication^ Create(IEngine^ engine, IBootstrapperCommand^ /*command*/) override
17 { 17 {
18 return gcnew TestManagedBootstrapperApplication(engine, command); 18 return gcnew TestManagedBootstrapperApplication(engine);
19 } 19 }
20 }; 20 };
21 21