Skip to content

Commit 758187a

Browse files
authored
Update general.md
1 parent f2582ab commit 758187a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/development/general.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,24 @@ CLASS z2ui5_cl_app IMPLEMENTATION.
1616
1717
CASE abap_true.
1818
19-
"init app start
2019
WHEN client->check_on_init( ).
2120
"...
2221
23-
"callback after navigation
2422
WHEN client->check_on_navigated( ).
2523
DATA(lo_app_prev) = client->get_app_prev( ).
2624
"...
2725
28-
" user commands
2926
WHEN client->check_on_event( ).
3027
DATA(lt_arg) = client->get_event_arg( ).
3128
3229
CASE abap_true.
3330
WHEN client->check_on_event( `OK` ).
3431
"...
32+
3533
WHEN client->check_on_event( `CANCEL` ).
3634
"...
37-
ENDCASE.
3835
36+
ENDCASE.
3937
ENDCASE.
4038
4139
CATCH cx_root INTO DATA(lx).

0 commit comments

Comments
 (0)