SCHEDULER fixes

This commit is contained in:
Frank
2019-12-08 00:27:20 +01:00
parent 4b6612e114
commit 1b5e9df586
5 changed files with 149 additions and 102 deletions

View File

@@ -488,6 +488,9 @@ local _EVENTMETA = {
-- @type EVENT.Events
-- @field #number IniUnit
--- Create new event handler.
-- @param #EVENT self
-- @return #EVENT self
function EVENT:New()
local self = BASE:Inherit( self, BASE:New() )
self:F2()
@@ -1223,7 +1226,7 @@ EVENTHANDLER = {
--- The EVENTHANDLER constructor
-- @param #EVENTHANDLER self
-- @return #EVENTHANDLER
-- @return #EVENTHANDLER self
function EVENTHANDLER:New()
self = BASE:Inherit( self, BASE:New() ) -- #EVENTHANDLER
return self