DEL: Remove some changes committed by mistake in 4816.

This commit is contained in:
cobines 2012-05-12 16:11:13 +00:00
commit de13edbf00

View file

@ -42,7 +42,6 @@ type
property Thread: TThread read FThread;
public
constructor Create(AThread: TThread); virtual;
destructor Destroy; override;
procedure Abort; virtual;
procedure Start;
procedure StartParam(Params: Pointer);
@ -283,16 +282,6 @@ begin
FWorkType := fvwtNone;
FThread := AThread;
writeln('created '+hexstr(self));
end;
destructor TFileViewWorker.Destroy;
begin
writeln('destroying '+hexstr(self), ' Can:', CanBeDestroyed);
if not CanBeDestroyed then
FCanBeDestroyed:=FCanBeDestroyed;
inherited Destroy;
writeln('destroyed '+hexstr(self));
end;
procedure TFileViewWorker.Abort;