Răsfoiți Sursa

SetupLdr.dpr: Fix search & replace mishap.

Tweaked the help text too while there.
Jordan Russell 1 an în urmă
părinte
comite
554e410b40
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      Projects/SetupLdr.dpr

+ 2 - 2
Projects/SetupLdr.dpr

@@ -310,7 +310,7 @@ begin
           '/HELP, /?' + SNewLine +
            'Shows this information.' + SNewLine +
           '/SP-' + SNewLine +
-          'Disables the This will install... Do you wish to continue? prompt at the beginning of SetupLdrAndSetup.' + SNewLine +
+          'Disables the "This will install... Do you wish to continue?" message box at the beginning of Setup.' + SNewLine +
           '/SILENT, /VERYSILENT' + SNewLine +
           'Instructs Setup to be silent or very silent.' + SNewLine +
           '/SUPPRESSMSGBOXES' + SNewLine +
@@ -495,7 +495,7 @@ begin
         Longint(OrigWndProc) := SetWindowLong(SetupLdrWnd, GWL_WNDPROC,
           Longint(@SetupLdrWndProc));
 
-        { Now execute SetupLdrAndSetup. Use the exit code it returns as our exit code. }
+        { Now execute Setup. Use the exit code it returns as our exit code. }
         ExecAndWait(TempFile, Format('/SL5="$%x,%d,%d,',
           [SetupLdrWnd, OffsetTable.Offset0, OffsetTable.Offset1]) +
           SelfFilename + '" ' + GetCmdTail, SetupLdrExitCode);