Ignore:
Timestamp:
Jul 17, 2012, 9:15:42 AM (12 years ago)
Author:
chronos
Message:
  • Added: Form with text output of executed external producer tool.
  • Fixed: Template for new unit mustn't initialize new project but only add unit file to project.
  • Added: Project manager file deletion and rename.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IDE/UProjectTemplates.pas

    r54 r61  
    4141implementation
    4242
     43resourcestring
     44  SConsoleApplication = 'Console application';
     45  SUnit = 'Unit';
     46  SPackage = 'Package';
     47  SGUIApplication = 'GUI application';
     48
    4349{ TProjectTemplateUnit }
    4450
     
    4652begin
    4753  inherited Create;
    48   Name := 'Unit';
     54  Name := SUnit;
     55  IsProject := False;
    4956end;
    5057
     
    6471    Add('end.');
    6572  end;
    66   Project.MainSource := NewFile;
    6773end;
    6874
     
    7278begin
    7379  inherited Create;
    74   Name := 'Package';
     80  Name := SPackage;
     81  IsProject := True;
    7582end;
    7683
     
    97104begin
    98105  inherited Create;
    99   Name := 'GUI application';
     106  Name := SGUIApplication;
     107  IsProject := True;
    100108end;
    101109
     
    128136begin
    129137  inherited Create;
    130   Name := 'Console application';
     138  Name := SConsoleApplication;
     139  IsProject := True;
    131140end;
    132141
Note: See TracChangeset for help on using the changeset viewer.