Ignore:
Timestamp:
Nov 9, 2010, 2:08:55 PM (13 years ago)
Author:
george
Message:
  • Modified: Project saving.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IDE/Forms/UCodeForm.pas

    r2 r21  
    77uses
    88  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, UCoolDocking,
    9   SynEdit, SynHighlighterPas;
     9  SynEdit, SynHighlighterPas, UProject;
    1010
    1111type
     
    1717    SynEditSource: TSynEdit;
    1818    SynPasSyn1: TSynPasSyn;
     19    procedure SynEditSourceChange(Sender: TObject);
    1920  private
    2021    { private declarations }
    2122  public
    22     { public declarations }
     23    ProjectFile: TProjectFile;
    2324  end;
    2425
     
    2829implementation
    2930
     31uses
     32  UMainForm;
     33
    3034{$R *.lfm}
     35
     36{ TCodeForm }
     37
     38procedure TCodeForm.SynEditSourceChange(Sender: TObject);
     39begin
     40  ProjectFile.Modified := True;
     41end;
    3142
    3243end.
Note: See TracChangeset for help on using the changeset viewer.