mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-01 16:59:35 +01:00
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 -
35 lines
460 B
ObjectPascal
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.
|
|
|
|
|