1
0
mirror of synced 2024-09-16 17:06:08 +00:00

Fixed: TX2GlobalLog tried to free an interface

This commit is contained in:
Mark van Renswoude 2014-05-28 11:49:48 +00:00
parent d19bcad4b4
commit 7b86cad3b4

View File

@ -4,13 +4,14 @@ interface
uses
System.SysUtils,
X2Log,
X2Log.Intf;
type
TX2GlobalLog = class(TObject)
private class var
FInstance: IX2Log;
FInstance: TX2Log;
protected
class procedure CleanupInstance;
public
@ -34,8 +35,6 @@ type
implementation
uses
X2Log;
{ TX2GlobalLog }