Changeset 61 for trunk/IDE/UProjectTemplates.pas
- Timestamp:
- Jul 17, 2012, 9:15:42 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE/UProjectTemplates.pas
r54 r61 41 41 implementation 42 42 43 resourcestring 44 SConsoleApplication = 'Console application'; 45 SUnit = 'Unit'; 46 SPackage = 'Package'; 47 SGUIApplication = 'GUI application'; 48 43 49 { TProjectTemplateUnit } 44 50 … … 46 52 begin 47 53 inherited Create; 48 Name := 'Unit'; 54 Name := SUnit; 55 IsProject := False; 49 56 end; 50 57 … … 64 71 Add('end.'); 65 72 end; 66 Project.MainSource := NewFile;67 73 end; 68 74 … … 72 78 begin 73 79 inherited Create; 74 Name := 'Package'; 80 Name := SPackage; 81 IsProject := True; 75 82 end; 76 83 … … 97 104 begin 98 105 inherited Create; 99 Name := 'GUI application'; 106 Name := SGUIApplication; 107 IsProject := True; 100 108 end; 101 109 … … 128 136 begin 129 137 inherited Create; 130 Name := 'Console application'; 138 Name := SConsoleApplication; 139 IsProject := True; 131 140 end; 132 141
Note:
See TracChangeset
for help on using the changeset viewer.