replace more unit initializers with lazy getters

reminder: use this method when order of init
is not controllable anylomre
This commit is contained in:
Basile Burg 2016-11-07 06:33:44 +01:00
parent 045ec6d42c
commit 9be54eb313
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
4 changed files with 25 additions and 13 deletions

View File

@ -526,6 +526,7 @@
<Filename Value="..\src\ce_compilers.pas"/>
<IsPartOfProject Value="True"/>
<ComponentName Value="Form1"/>
<HasResources Value="True"/>
<ResourceBaseClass Value="Form"/>
</Unit54>
</Units>

View File

@ -8,7 +8,7 @@ uses
{$ENDIF}{$ENDIF}
Interfaces, Forms, lazcontrols, runtimetypeinfocontrols, anchordockpkg,
ce_sharedres, ce_observer, ce_libman, ce_symstring, ce_tools, ce_dcd, ce_main,
ce_writableComponent, ce_staticmacro, ce_inspectors, ce_editoroptions, ce_compilers,
ce_writableComponent, ce_staticmacro, ce_inspectors, ce_editoroptions,
ce_dockoptions, ce_shortcutseditor, ce_mru, ce_processes,
ce_dialogs, ce_dubprojeditor, ce_controls, ce_dfmt, ce_lcldragdrop,
ce_stringrange, ce_dlangmaps, ce_projgroup, ce_projutils, ce_d2synpresets,

View File

@ -31,14 +31,16 @@ type
procedure DragDrop(Sender, Source: TObject; X, Y: Integer);
end;
var
ddHandler: TDDHandler;
function ddHandler: TDDHandler;
implementation
uses
ce_observer;
var
fDdHandler: TDDHandler = nil;
constructor TDDHandler.create;
begin
EntitiesConnector.addObserver(self);
@ -152,11 +154,14 @@ begin
else getMultiDocHandler.openDocument(fname);
end;
initialization
ddHandler:= TDDHandler.create;
function ddHandler: TDDHandler;
begin
if fDdHandler.isNil then
fDdHandler:= TDDHandler.create;
result := fDdHandler;
end;
finalization
ddHandler.free;
end.

View File

@ -7,7 +7,7 @@ interface
uses
Classes, SysUtils, FileUtil, ce_common, ce_writableComponent, LazFileUtils,
ghashmap, ghashset,
ce_dcd, ce_dialogs, ce_projutils, ce_interfaces, ce_dlang, ce_dastworx,
ce_dcd, ce_projutils, ce_interfaces, ce_dlang, ce_dastworx,
ce_compilers;
type
@ -135,11 +135,13 @@ type
const
libFname = 'libraryManager.txt';
var
LibMan: TLibraryManager;
function LibMan: TLibraryManager;
implementation
var
fLibMan: TLibraryManager = nil;
const
deactivatedMessage = 'Library item "%s" could be detected but it is marked disabled, ' +
'the compilation will fail.';
@ -663,9 +665,13 @@ begin
end;
end;
initialization
registerClasses([TLibraryManager, TLibraryItem]);
LibMan := TLibraryManager.create(nil);
function LibMan: TLibraryManager;
begin
if fLibMan.isNil then
fLibMan := TLibraryManager.create(nil);
result := fLibMan;
end;
finalization
LibMan.Free;
fLibMan.Free;
end.