Implemented WSF_FORM_ELEMENT_CONTROL

This commit is contained in:
Severin Münger
2013-09-05 16:25:44 +02:00
parent f9cc0afb9e
commit deaeaa434d
5 changed files with 85 additions and 27 deletions

View File

@@ -80,7 +80,7 @@ feature {WSF_PAGE_CONTROL, WSF_CONTROL} -- STATE MANAGEMENT
feature --EVENT HANDLING
handle_callback (event: STRING; cname: STRING)
handle_callback (cname: STRING; event: STRING)
-- Pass callback to subcontrols
do
if equal (cname, control_name) then
@@ -88,7 +88,7 @@ feature --EVENT HANDLING
across
controls as c
loop
c.item.handle_callback (event, cname)
c.item.handle_callback (cname, event)
end
end
end