From ebf998ff093158bd5ade429f85382914e0dfb60f Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Fri, 13 Oct 2023 20:22:34 -0400 Subject: [PATCH] Random typo fix. --- src/ext/Util/ca/CloseApps.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ext/Util/ca/CloseApps.cpp b/src/ext/Util/ca/CloseApps.cpp index f2648476e..cfe8b639d 100644 --- a/src/ext/Util/ca/CloseApps.cpp +++ b/src/ext/Util/ca/CloseApps.cpp @@ -136,7 +136,7 @@ static HRESULT PromptToContinue( } /****************************************************************** - SendProcessMessage - helper function to enumerate the top-level + SendProcessMessage - helper function to enumerate the top-level windows and send to all matching a process ID. ******************************************************************/ @@ -164,7 +164,7 @@ void SendProcessMessage( } /****************************************************************** - SendApplicationMessage - helper function to iterate through the + SendApplicationMessage - helper function to iterate through the processes for the specified application and send all applicable process Ids a message and give them time to process the message. @@ -250,7 +250,7 @@ void TerminateProcesses( /****************************************************************** WixCloseApplications - entry point for WixCloseApplications Custom Action - called as Type 1 CustomAction (binary DLL) from Windows Installer + called as Type 1 CustomAction (binary DLL) from Windows Installer in InstallExecuteSequence before InstallFiles ******************************************************************/ extern "C" UINT __stdcall WixCloseApplications( @@ -462,9 +462,9 @@ extern "C" UINT __stdcall WixCloseApplications( /****************************************************************** - WixCloseApplicationsDeferred - entry point for + WixCloseApplicationsDeferred - entry point for WixCloseApplicationsDeferred Custom Action - called as Type 1025 CustomAction + called as Type 1025 CustomAction (deferred binary DLL) NOTE: deferred CustomAction since it modifies the machine @@ -533,7 +533,7 @@ extern "C" UINT __stdcall WixCloseApplicationsDeferred( SendApplicationMessage(pwzTarget, WM_QUERYENDSESSION, dwTimeout); } - // If we find that an app that we need closed is still runing, require a + // If we find that an app that we need closed is still running, require a // restart or kill the process as directed. ProcFindAllIdsFromExeName(pwzTarget, &prgProcessIds, &cProcessIds); if (0 < cProcessIds)