Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions wd_helper.au3
Original file line number Diff line number Diff line change
Expand Up @@ -3478,9 +3478,9 @@ EndFunc ;==>__WD_Base64Decode

; #INTERNAL_USE_ONLY# ===========================================================================================================
; Name ..........: __WD_ErrHnd
; Description ...: Dummy error handler
; Syntax ........: __WD_ErrHnd()
; Parameters ....: None
; Description ...: COM Error handler
; Syntax ........: __WD_ErrHnd($oError)
; Parameters ....: $oError - Error object.
; Return values .: None
; Author ........: mLipok
; Modified ......:
Expand All @@ -3489,8 +3489,8 @@ EndFunc ;==>__WD_Base64Decode
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func __WD_ErrHnd()

Func __WD_ErrHnd($oError)
__WD_Error($oError.source, $_WD_ERROR_GeneralError, " err.number: " & $oError.number & " err.windescription: " & $oError.windescription & " err.description is: " & $oError.description, $oError.scriptline)
EndFunc ;==>__WD_ErrHnd

; #INTERNAL_USE_ONLY# ===========================================================================================================
Expand Down