Skip to content

Commit e0d91a7

Browse files
committed
bugfix
1 parent 5194054 commit e0d91a7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/tree/cl_gui_alv_tree.clas.abap

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
CLASS cl_gui_alv_tree DEFINITION INHERITING FROM cl_alv_tree_base PUBLIC.
22
PUBLIC SECTION.
33

4+
METHODS constructor
5+
IMPORTING
6+
parent TYPE REF TO cl_gui_container OPTIONAL
7+
node_selection_mode TYPE i DEFAULT cl_gui_column_tree=>node_sel_mode_single
8+
item_selection TYPE abap_bool DEFAULT 'X'
9+
no_toolbar TYPE abap_bool OPTIONAL
10+
no_html_header TYPE abap_bool OPTIONAL.
11+
412
METHODS free.
513

614
METHODS get_outtab_line
@@ -133,6 +141,10 @@ ENDCLASS.
133141

134142
CLASS cl_gui_alv_tree IMPLEMENTATION.
135143

144+
METHOD constructor.
145+
ASSERT 1 = 'todo'.
146+
ENDMETHOD.
147+
136148
METHOD set_top_node.
137149
ASSERT 1 = 'todo'.
138150
ENDMETHOD.

0 commit comments

Comments
 (0)