lazarus/examples/gridcelleditor/gridcelleditor.lpr
mattias 4560417c25 added package link for simpleideintf
git-svn-id: trunk@10375 -
2007-01-05 12:11:54 +00:00

19 lines
308 B
ObjectPascal

program GridCellEditor;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, Unit1;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.