fix for 1.9.7 and higher.

git-svn-id: trunk@6706 -
This commit is contained in:
vincents 2005-01-28 11:40:32 +00:00
parent 2a59522bf1
commit 71f4a8dab7

View File

@ -1212,7 +1212,15 @@ end;
//------------------------------------------------------------------------------
{$IFNDEF VER1_0}
{$IFNDEF VER1_9_6}
procedure ExceptionOccurred(Sender: TObject; Addr:Pointer; FrameCount:Longint; Frames: PPointer);
{$ELSE}
procedure ExceptionOccurred(Sender: TObject; Addr,Frame: Pointer);
{$ENDIF}
{$ELSE}
procedure ExceptionOccurred(Sender: TObject; Addr,Frame: Pointer);
{$ENDIF}
Begin
DebugLn('[FORMS.PP] ExceptionOccurred ');
if HaltingProgram or HandlingException then Halt;