Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yannicktrinh committed Dec 12, 2023
1 parent 1521a19 commit 9d67950
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Project/Sources/Classes/_BaseClass.4dm
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,13 @@ Function _throwErrors($inThrowErrors : Boolean)
Function _installErrorHandler($inErrorHandler : Text)

This._internals._savedErrorHandler:=Method called on error
ON ERR CALL((Length($inErrorHandler)>0) ? $inErrorHandler : "_errorHandler"; ek errors from components)
ON ERR CALL((Length($inErrorHandler)>0) ? $inErrorHandler : "_errorHandler"; ek global)


// ----------------------------------------------------


Function _resetErrorHandler

ON ERR CALL(This._internals._savedErrorHandler; ek errors from components)
ON ERR CALL(This._internals._savedErrorHandler; ek global)
This._internals._savedErrorHandler:=""

0 comments on commit 9d67950

Please sign in to comment.