Ignore:
Timestamp:
Sep 18, 2006, 6:26:15 PM (19 years ago)
Author:
RBRi
Message:

form initialization fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NewView/NewView.pas

    r33 r36  
    1010Uses
    1111  Forms,
    12   MainForm;
     12  Graphics,
     13  MainForm,   
     14
     15  // don't remove this, this stuff is needed internally to
     16  // initialize the forms
     17  ProductInformationFormUnit,
     18  OptionsForm,
     19  InformationFormUnit,
     20  FileDialogForm,
     21  GlobalSearchForm,
     22  NoteForm,
     23  BookmarksFormUnit,
     24  PrintDialogUnit,
     25  SearchDirectoriesFormUnit;
    1326
    1427{$r NewView.scu}
     
    1629Begin
    1730  Application.Create;
    18   Application.CreateForm (TMainForm, MainForm);
     31  Application.CreateForm(TMainForm, MainForm);
    1932  Application.Run;
    2033  Application.Destroy;
    2134End.
    22 
Note: See TracChangeset for help on using the changeset viewer.