aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp')
-rw-r--r--src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp b/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp
index a8967a31..23db7c5f 100644
--- a/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp
+++ b/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp
@@ -1,7 +1,6 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2 2
3#include "precomp.h" 3#include "precomp.h"
4#include "BalBaseBootstrapperApplication.h"
5 4
6static const LPCWSTR WIXIUIBA_WINDOW_CLASS = L"WixInternalUIBA"; 5static const LPCWSTR WIXIUIBA_WINDOW_CLASS = L"WixInternalUIBA";
7 6
@@ -15,10 +14,10 @@ enum WM_WIXIUIBA
15}; 14};
16 15
17 16
18class CWixInternalUIBootstrapperApplication : public CBalBaseBootstrapperApplication 17class CWixInternalUIBootstrapperApplication : public CBootstrapperApplicationBase
19{ 18{
20public: // IBootstrapperApplication 19public: // IBootstrapperApplication
21 STDMETHODIMP OnCreate( 20 virtual STDMETHODIMP OnCreate(
22 __in IBootstrapperEngine* pEngine, 21 __in IBootstrapperEngine* pEngine,
23 __in BOOTSTRAPPER_COMMAND* pCommand 22 __in BOOTSTRAPPER_COMMAND* pCommand
24 ) 23 )
@@ -26,7 +25,7 @@ public: // IBootstrapperApplication
26 HRESULT hr = S_OK; 25 HRESULT hr = S_OK;
27 26
28 hr = __super::OnCreate(pEngine, pCommand); 27 hr = __super::OnCreate(pEngine, pCommand);
29 BalExitOnFailure(hr, "CBalBaseBootstrapperApplication initialization failed."); 28 BalExitOnFailure(hr, "CBootstrapperApplicationBase initialization failed.");
30 29
31 m_commandAction = pCommand->action; 30 m_commandAction = pCommand->action;
32 m_commandDisplay = pCommand->display; 31 m_commandDisplay = pCommand->display;
@@ -794,7 +793,7 @@ public:
794 // 793 //
795 CWixInternalUIBootstrapperApplication( 794 CWixInternalUIBootstrapperApplication(
796 __in HMODULE hModule 795 __in HMODULE hModule
797 ) : CBalBaseBootstrapperApplication(3, 3000) 796 ) : CBootstrapperApplicationBase(3, 3000)
798 { 797 {
799 m_hModule = hModule; 798 m_hModule = hModule;
800 m_commandAction = BOOTSTRAPPER_ACTION_UNKNOWN; 799 m_commandAction = BOOTSTRAPPER_ACTION_UNKNOWN;