Ignore:
Timestamp:
Jul 19, 2012, 8:16:57 AM (12 years ago)
Author:
chronos
Message:
  • Added: Information text about completion of build process including elapsed time.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IDE/Forms/UFormMessages.pas

    r57 r66  
    5454  with Core, FormMain, FormSourceCode do
    5555  with TErrorMessage(Compiler.ErrorMessages[Item.Index]) do begin
    56     Item.Caption := FileName;
     56    if FileName = '' then Item.Caption := ' '
     57      else Item.Caption := FileName;
    5758    Item.Data := Compiler.ErrorMessages[Item.Index];
    5859    Item.SubItems.Add(IntToStr(Position.X) + ',' + IntToStr(Position.Y));
     
    6970  with Core, FormSourceCode do
    7071  if Assigned(ListView1.Selected) then
    71   with TErrorMessage(ListView1.Selected.Data) do begin
     72  with TErrorMessage(ListView1.Selected.Data) do
     73  if FileName <> '' then begin
    7274    ProjectFile := Project.Files.SearchFile(FileName);
    7375    if Assigned(ProjectFile) then
Note: See TracChangeset for help on using the changeset viewer.