Changeset 66 for trunk/IDE/Forms/UFormMessages.pas
- Timestamp:
- Jul 19, 2012, 8:16:57 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE/Forms/UFormMessages.pas
r57 r66 54 54 with Core, FormMain, FormSourceCode do 55 55 with TErrorMessage(Compiler.ErrorMessages[Item.Index]) do begin 56 Item.Caption := FileName; 56 if FileName = '' then Item.Caption := ' ' 57 else Item.Caption := FileName; 57 58 Item.Data := Compiler.ErrorMessages[Item.Index]; 58 59 Item.SubItems.Add(IntToStr(Position.X) + ',' + IntToStr(Position.Y)); … … 69 70 with Core, FormSourceCode do 70 71 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 72 74 ProjectFile := Project.Files.SearchFile(FileName); 73 75 if Assigned(ProjectFile) then
Note:
See TracChangeset
for help on using the changeset viewer.