Advertisement
WarPie90

Simba callback fixes

Jun 16th, 2018
402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 1.24 KB | None | 0 0
  1. These should all be exported as "of object"
  2.  
  3. Example - Replace:
  4. addNativeGlobalType('procedure(Sender: TObject)', 'TNotifyEvent');
  5. With:
  6. addNativeGlobalType('procedure(Sender: TObject) of object', 'TNotifyEvent');
  7.  
  8. https://github.com/MerlijnWajer/Simba/blob/73deaec2f0060333cccddba59678b975395ffd3f/Units/MMLAddon/LPInc/Classes/miniLCL/lplclcontrols.pas#L1665-L1666
  9.  
  10. https://github.com/MerlijnWajer/Simba/blob/73deaec2f0060333cccddba59678b975395ffd3f/Units/MMLAddon/LPInc/Classes/miniLCL/lplclcontrols.pas#L1668-L1669
  11.  
  12. https://github.com/MerlijnWajer/Simba/blob/73deaec2f0060333cccddba59678b975395ffd3f/Units/MMLAddon/LPInc/Classes/miniLCL/lplclcomctrls.pas#L1336-L1337
  13.  
  14. https://github.com/MerlijnWajer/Simba/blob/73deaec2f0060333cccddba59678b975395ffd3f/Units/MMLAddon/LPInc/Classes/miniLCL/lplclforms.pas#L1192-L1193
  15.  
  16. https://github.com/MerlijnWajer/Simba/blob/73deaec2f0060333cccddba59678b975395ffd3f/Units/MMLAddon/LPInc/Classes/miniLCL/lplclsystem.pas#L1286
  17.  
  18. https://github.com/MerlijnWajer/Simba/blob/73deaec2f0060333cccddba59678b975395ffd3f/Units/MMLAddon/LPInc/Classes/miniLCL/lplclstdctrls.pas#L1977
  19.  
  20. https://github.com/MerlijnWajer/Simba/blob/73deaec2f0060333cccddba59678b975395ffd3f/Units/MMLAddon/LPInc/Classes/miniLCL/lplclstdctrls.pas#L1980
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement