Ignore:
Timestamp:
Aug 7, 2024, 12:35:37 AM (2 months ago)
Author:
chronos
Message:
  • Modified: Updated Common package.
  • Fixed: Wrong return address from CALL instruction.
Location:
branches/ByteArray
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/ByteArray

    • Property svn:ignore
      •  

        old new  
        55ByteArray.lps
        66ByteArray.res
         7ByteArray.exe
  • branches/ByteArray/Packages/Common/CommonPackage.pas

    r5 r11  
    99
    1010uses
    11   Common.StopWatch, Common.Utils, Common.DebugLog, Common.Delay,
    12   Common.PrefixMultiplier, Common.URI, Common.Threading, Common.Memory,
    13   Common.ResetableThread, Common.Pool, Common.LastOpenedList,
    14   Common.RegistryEx, Common.JobProgressView, Common.XML,
    15   Common.ApplicationInfo, Common.SyncCounter, Common.ListViewSort,
    16   Common.PersistentForm, Common.FindFile, Common.ScaleDPI, Common.Theme,
    17   Common.StringTable, Common.MetaCanvas, Common.Geometric, Common.Translator,
    18   Common.Languages, Common.PixelPointer, Common.DataFile, Common.TestCase,
    19   Common.Generics, Common.Table, Common.FormEx, Common.FormTests,
    20   Common.FormTest, Common.FormAbout, LazarusPackageIntf;
     11  StopWatch, Common, DebugLog, Common.Delay, PrefixMultiplier, URI, Threading,
     12  Memory, ResetableThread, Pool, LastOpenedList, RegistryEx, JobProgressView,
     13  XML, ApplicationInfo, SyncCounter, ListViewSort, PersistentForm, FindFile,
     14  ScaleDPI, Theme, StringTable, MetaCanvas, Geometric, Translator, Languages,
     15  PixelPointer, DataFile, TestCase, Generics, Table, FormEx, FormTests,
     16  FormTest, FormAbout, LazarusPackageIntf;
    2117
    2218implementation
     
    2420procedure Register;
    2521begin
    26   RegisterUnit('Common.DebugLog', @Common.DebugLog.Register);
    27   RegisterUnit('Common.PrefixMultiplier', @Common.PrefixMultiplier.Register);
    28   RegisterUnit('Common.LastOpenedList', @Common.LastOpenedList.Register);
    29   RegisterUnit('Common.JobProgressView', @Common.JobProgressView.Register);
    30   RegisterUnit('Common.ApplicationInfo', @Common.ApplicationInfo.Register);
    31   RegisterUnit('Common.ListViewSort', @Common.ListViewSort.Register);
    32   RegisterUnit('Common.PersistentForm', @Common.PersistentForm.Register);
    33   RegisterUnit('Common.FindFile', @Common.FindFile.Register);
    34   RegisterUnit('Common.ScaleDPI', @Common.ScaleDPI.Register);
    35   RegisterUnit('Common.Theme', @Common.Theme.Register);
    36   RegisterUnit('Common.Translator', @Common.Translator.Register);
    37   RegisterUnit('Common.FormEx', @Common.FormEx.Register);
     22  RegisterUnit('DebugLog', @DebugLog.Register);
     23  RegisterUnit('PrefixMultiplier', @PrefixMultiplier.Register);
     24  RegisterUnit('LastOpenedList', @LastOpenedList.Register);
     25  RegisterUnit('JobProgressView', @JobProgressView.Register);
     26  RegisterUnit('ApplicationInfo', @ApplicationInfo.Register);
     27  RegisterUnit('ListViewSort', @ListViewSort.Register);
     28  RegisterUnit('PersistentForm', @PersistentForm.Register);
     29  RegisterUnit('FindFile', @FindFile.Register);
     30  RegisterUnit('ScaleDPI', @ScaleDPI.Register);
     31  RegisterUnit('Theme', @Theme.Register);
     32  RegisterUnit('Translator', @Translator.Register);
     33  RegisterUnit('FormEx', @FormEx.Register);
    3834end;
    3935
Note: See TracChangeset for help on using the changeset viewer.