Skip to content

Commit e3cb6c7

Browse files
authored
Update 016-CSV_Editor.au3
1 parent 7480932 commit e3cb6c7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

examples/016-CSV_Editor.au3

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ OnAutoItExitRegister("_ExitApp")
1717

1818
; Global objects
1919
Global $oWeb, $oJS
20-
Global $oMyError = ObjEvent("AutoIt.Error", "_ErrFunc") ; COM Error Handler
20+
Global $oMyError = ObjEvent("AutoIt.Error", _ErrFunc) ; COM Error Handler
2121
Global $g_DebugInfo = True
2222
Global $sProfileDirectory = @ScriptDir & "\UserDataFolder"
2323
Global $hGUI
2424

25-
Main()
25+
_Example()
2626

27-
Func Main()
27+
Func _Example()
2828
; Create GUI with resizing support
2929
$hGUI = GUICreate("WebView2AutoIt CSV_editor", 1500, 650, -1, -1, BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPCHILDREN))
3030
GUISetBkColor(0x2B2B2B, $hGUI)
@@ -88,7 +88,7 @@ Func Main()
8888

8989
EndSwitch
9090
WEnd
91-
EndFunc ;==>Main
91+
EndFunc ;==>_Example
9292

9393
#Region ; === EVENT HANDLERS ===
9494

0 commit comments

Comments
 (0)