You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@312 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -138,3 +138,4 @@ end;
|
||||
|
||||
end.
|
||||
|
||||
|
||||
|
@ -366,6 +366,7 @@ Type
|
||||
AFormatter : IFormatterClient;
|
||||
ACallHandler : ICallMaker
|
||||
);
|
||||
destructor Destroy();override;
|
||||
End;
|
||||
|
||||
TFormatterFactoryRegistryItem = class
|
||||
@ -437,6 +438,14 @@ begin
|
||||
FCallHandler := ACallHandler;
|
||||
end;
|
||||
|
||||
destructor TServiceProtocol.Destroy();
|
||||
begin
|
||||
FFormatter := nil;
|
||||
FCallHandler := nil;
|
||||
FTransport := nil;
|
||||
inherited;
|
||||
end;
|
||||
|
||||
{ TFormatterFactoryRegistryItem }
|
||||
|
||||
constructor TFormatterFactoryRegistryItem.Create(
|
||||
|
@ -213,7 +213,7 @@ begin
|
||||
end;
|
||||
|
||||
Var
|
||||
ResMGR : TWSTResourceManager;
|
||||
ResMGR : TWSTResourceManager = nil;
|
||||
|
||||
Function GetWSTResourceManager(Force : Boolean = True) : TWSTResourceManager;
|
||||
|
||||
@ -234,5 +234,8 @@ begin
|
||||
ResMGR:=AValue;
|
||||
end;
|
||||
|
||||
end.
|
||||
initialization
|
||||
finalization
|
||||
FreeAndNil(ResMGR);
|
||||
|
||||
end.
|
||||
|
Reference in New Issue
Block a user