lazarus/components/tachart/demo/extent/extentdemo.lpr
ask 292ccf8960 TAChart: Fix examples compilation by removing obsolete {$R projectname.rc} directive.
Patch by Tomasz Wieckowski, issue #17054

git-svn-id: trunk@26918 -
2010-07-31 02:21:36 +00:00

18 lines
296 B
ObjectPascal

program extentdemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, main, TAChartLazarusPkg;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.