lazarus/doceditor/fpdocupdater/fpdocupdater.lpr
tombo 146fe15441 FPDocUpdater: fixed updating topics, multiple elements with same name
- shows update summary

git-svn-id: trunk@12838 -
2007-11-12 14:27:52 +00:00

21 lines
438 B
ObjectPascal

program FPDocUpdater;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, MainUnit, UnitMove, UnitSummary;
begin
Application.Initialize;
Application.CreateForm(TFormMain, FormMain);
Application.CreateForm(TFormMove, FormMove);
Application.CreateForm(TFormSummary, FormSummary);
Application.Run;
end.