Ignore:
Timestamp:
Apr 9, 2009, 11:04:41 AM (16 years ago)
Author:
george
Message:
  • Opraveno: Chyby v uvolňování paměti.
  • Opraveno: Program po rozdělení do více souborů opět funguje jako dříve.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DelphiToC/UCSource.pas

    r12 r14  
    33interface
    44
     5uses
     6  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
     7  Dialogs, StdCtrls, UPascalSource;
     8
     9type
     10  TCSource = class
     11    TextSource: TStringList;
     12    PascalSource: TStringList;
     13    procedure Generate;
     14    constructor Create;
     15    destructor Destroy; override;
     16  end;
     17
    518implementation
    619
     20{ TCSource }
     21
     22constructor TCSource.Create;
     23begin
     24  TextSource := TStringList.Create;
     25end;
     26
     27destructor TCSource.Destroy;
     28begin
     29  TextSource.Free;
     30  inherited;
     31end;
     32
     33procedure TCSource.Generate;
     34begin
     35
     36end;
     37
    738end.
Note: See TracChangeset for help on using the changeset viewer.