Changeset 67 for branches/Transpascal/Forms
- Timestamp:
- Oct 18, 2010, 12:39:37 PM (15 years ago)
- Location:
- branches/Transpascal/Forms
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Transpascal/Forms/UMainForm.pas
r66 r67 108 108 if Project.Items.Count > 0 then 109 109 with TProjectFile(Project.Items[0]) do begin 110 Compiler.Compile(Parent.GetDir + Name, Source );110 Compiler.Compile(Parent.GetDir + Name, Source, Project.RootDir); 111 111 end; 112 112 -
branches/Transpascal/Forms/UMessagesForm.pas
r64 r67 43 43 if ListBoxMessages.ItemIndex <> -1 then 44 44 with TErrorMessage(Compiler.ErrorMessages[ListBoxMessages.ItemIndex]) do begin 45 ProjectFile := Project.SearchFile( fileName);45 ProjectFile := Project.SearchFile(FileName); 46 46 if Assigned(ProjectFile) then 47 47 SynEditSource.Lines.Assign(ProjectFile.Source); 48 48 SynEditSource.CaretXY := Position; 49 TForm(SynEditSource.Owner).Show; 49 50 SynEditSource.SetFocus; 50 51 end;
Note:
See TracChangeset
for help on using the changeset viewer.