Files
lazarus-ccr/components/virtualtreeview-unstable/demos/mininal/minimal_lcl.lpr
blikblum 2411bee5e1 * Skip animation in Gtk due to poor timeGetTime implementation
* Dont cancel edit in WMKeydown under gtk1 (LCL bug 8865)
* Cleanup of objects and minimal demos

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@164 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-05-14 12:18:53 +00:00

19 lines
309 B
ObjectPascal

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