Ver Fonte

Fix leftover CallUpdate param which wasnt supposed to be there anymore.

Martijn Laan há 3 meses atrás
pai
commit
5a830a1524
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      Projects/Src/Setup.Install.pas

+ 2 - 2
Projects/Src/Setup.Install.pas

@@ -78,7 +78,7 @@ begin
     WizardForm.FilenameLabel.Update;
 end;
 
-procedure SetStatusLabelText(const S: String; const CallUpdate: Boolean = True;
+procedure SetStatusLabelText(const S: String;
   const ClearFilenameLabelText: Boolean = True);
 begin
   if WizardForm.StatusLabel.Caption <> S then begin
@@ -1254,7 +1254,7 @@ var
           raise;
         end;
 
-        { Update the filename label }
+        { Update the status and filename labels }
         if foDownload in CurFile^.Options then
           SetStatusLabelText(SetupMessages[msgStatusDownloadFiles], False)
         else