lazarus/doceditor/lazde.lpr
maxim ccb071d8e3 LazDE doceditor - applied patch from alexs with small modifications:
1. Main window controls are now localized using actions;
  2. Localized "About..." form; made it display GPL license (loaded from the root Lazarus directory);
  3. Fixed loading of .po files when LazDE was not started from its own directory;
  4. Added version info;
  5. Fixed main icon.

git-svn-id: trunk@23929 -
2010-03-10 21:45:34 +00:00

35 lines
460 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:='LazDocEditor';
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.