make message box for closing app multiline

This commit is contained in:
Stephen Birarda 2016-01-18 16:59:28 -08:00
parent 9b20d07886
commit 51c476f521

View file

@ -993,7 +993,8 @@ FunctionEnd
!define UniqueID ${__LINE__}
; the process is running, ask the user if they want us to close it
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "${displayName} cannot be ${action} while ${displayName} is running. Would you like the ${prompter} to try closing it?"
MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION \
"${displayName} cannot be ${action} while ${displayName} is running. Would you like the ${prompter} to try closing it?" \
IDOK AttemptClose_${UniqueID} IDCANCEL Abort_${UniqueID} /SD IDCANCEL
AttemptClose_${UniqueID}: