Changeset 9 for trunk/Forms/UFormMain.pas
- Timestamp:
- May 18, 2015, 11:49:39 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.pas
r8 r9 85 85 const 86 86 AppName = 'VCSCommander'; 87 var 88 NewCaption: string; 87 89 begin 90 NewCaption := ''; 88 91 if Assigned(Core.Project) then 89 Caption := Core.Project.Directory + ' - ' + AppName 90 else Caption := AppName; 92 NewCaption := Core.Project.Directory + ' (' + Core.Project.Backend.Name + ') - '; 93 NewCaption := NewCaption + AppName; 94 Caption := NewCaption; 91 95 end; 92 96
Note:
See TracChangeset
for help on using the changeset viewer.