lazarus/doceditor/lazde.lpr
michael 6492775a40 * Added editing of eelement link attribute
git-svn-id: trunk@28541 -
2010-11-28 16:25:12 +00:00

35 lines
477 B
ObjectPascal

program lazde;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms,
FrmMain,
frmOptions,
frmNewNode,
frmmakeskel,
frmLink,
frmTable,
frmabout,
pkeditor,
eleditor,
fpdeutil,
frmexample,
frmbuild,
frmsource,
lazdemsg,
lazdeopts,
pgeditor;
{$R lazde.res}
begin
Application.Title:='Lazarus documentation editor.';
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.