Changeset 45 for trunk/Forms
- Timestamp:
- Jul 12, 2012, 7:08:10 AM (12 years ago)
- Location:
- trunk/Forms
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.lfm
r44 r45 1 1 object MainForm: TMainForm 2 Left = 2042 Left = 501 3 3 Height = 414 4 Top = 884 Top = 170 5 5 Width = 665 6 6 Caption = 'LazFuck' … … 1857 1857 top = 296 1858 1858 end 1859 object ApplicationInfo: TApplicationInfo 1860 Identification = 1 1861 VersionMajor = 1 1862 VersionMinor = 0 1863 VersionBugFix = 0 1864 VersionSuffix = 'alfa' 1865 CompanyName = 'Chronosoft' 1866 CompanyHomePage = 'http://svn.zdechov.net/trac/LazFuck' 1867 HomePage = 'http://svn.zdechov.net/trac/LazFuck' 1868 AuthorsName = 'Chronos' 1869 EmailContact = 'robie@centrum.cz' 1870 AppName = 'LazFuck' 1871 ReleaseDate = 41102 1872 RegistryKey = '\Software\Chronosoft\LazFuck' 1873 RegistryRoot = rrKeyCurrentUser 1874 left = 216 1875 top = 296 1876 end 1859 1877 end -
trunk/Forms/UFormMain.pas
r44 r45 8 8 Classes, SysUtils, FileUtil, SynEdit, Forms, Controls, Graphics, Dialogs, 9 9 Menus, ActnList, StdCtrls, ComCtrls, ExtCtrls, UTargetInterpretter, 10 UCoolTranslator, StrUtils, SpecializedList, UTarget, Registry, URegistry,11 ULastOpenedList, Process;10 UCoolTranslator, StrUtils, SpecializedList, UTarget, UApplicationInfo, 11 Registry, URegistry, ULastOpenedList, Process; 12 12 13 13 const … … 19 19 20 20 TMainForm = class(TForm) 21 ApplicationInfo: TApplicationInfo; 21 22 AProgramShowExecutionPoint: TAction; 22 23 AShowSourcePosition: TAction; … … 197 198 198 199 uses 199 UFormCPU, U ApplicationInfo, UFormOptions, UFormMessages, UTargetJava,200 UFormCPU, UFormOptions, UFormMessages, UTargetJava, 200 201 UTargetDelphi, UTargetPHP, UTargetC, UFormTargets, UFormOutput, UFormInput, 201 202 UFormMemory; … … 338 339 procedure TMainForm.LastOpenedListChange(Sender: TObject); 339 340 begin 340 LastOpenedList.LoadToMenuItem(MenuItemOpenRecent );341 LastOpenedList.LoadToMenuItem(MenuItemOpenRecent, AProjectOpenRecentExecute); 341 342 end; 342 343 … … 446 447 LastOpenedList := TLastOpenedList.Create(nil); 447 448 LastOpenedList.OnChange := LastOpenedListChange; 448 LastOpenedList.ClickAction := AProjectOpenRecentExecute;449 449 LoadFromRegistry(RegistryRoot, ApplicationInfo.RegistryKey); 450 450 end;
Note:
See TracChangeset
for help on using the changeset viewer.