lazarus/examples/androidlcl/nonandroidtest.lpr
sekelsenmat b52ee389ac Fixes the drawing of the checkbox in Android
git-svn-id: trunk@36396 -
2012-03-28 15:30:23 +00:00

19 lines
353 B
ObjectPascal

program nonandroidtest;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms, mainform, secondform, customdrawndrawers, customdrawn_android;
{$R *.res}
begin
DefaultStyle := dsAndroid;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.Run;
end.