mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:17:52 +02:00
Cocoq: release two global variables issue #41170
This commit is contained in:
parent
7e241fef3c
commit
e9baea68d1
@ -389,5 +389,9 @@ initialization
|
||||
CocoaConfigMenu.menuItem.defaultRadioImageName:= NSSTR('NSDatePickerCalendarHome');
|
||||
|
||||
CocoaConfigFocusRing:= TCocoaConfigFocusRing.Create;
|
||||
|
||||
finalization
|
||||
FreeAndNil( CocoaConfigFocusRing );
|
||||
|
||||
end.
|
||||
|
||||
|
@ -2076,8 +2076,5 @@ begin
|
||||
sv.setBorderType( NSBorderStyle[astyle] );
|
||||
end;
|
||||
|
||||
initialization
|
||||
ASyncLCLControlAdjustSizer:= TASyncLCLControlAdjustSizer.Create;
|
||||
|
||||
end.
|
||||
|
||||
|
@ -6,11 +6,11 @@ unit CocoaWSScrollers;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, LCLType, Controls, Forms,
|
||||
Classes, SysUtils, LCLType, Controls, Forms,
|
||||
CocoaAll, CocoaPrivate, CocoaCustomControl, CocoaScrollers, CocoaUtils;
|
||||
|
||||
type
|
||||
{ ASyncLCLControlAdjustSizer }
|
||||
{ TASyncLCLControlAdjustSizer }
|
||||
|
||||
TASyncLCLControlAdjustSizer = class
|
||||
private
|
||||
@ -154,5 +154,8 @@ end;
|
||||
initialization
|
||||
ASyncLCLControlAdjustSizer:= TASyncLCLControlAdjustSizer.Create;
|
||||
|
||||
finalization
|
||||
FreeAndNil( ASyncLCLControlAdjustSizer );
|
||||
|
||||
end.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user