Skip to content

Commit ac4df89

Browse files
authored
bugfix (#51)
1 parent 5194054 commit ac4df89

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
},
1212
"license": "MIT",
1313
"dependencies": {
14-
"@abaplint/cli": "^2.113.110",
15-
"@abaplint/runtime": "^2.10.49",
14+
"@abaplint/cli": "^2.113.134",
15+
"@abaplint/runtime": "^2.10.61",
1616
"@abaplint/database-sqlite": "^2.10.24",
17-
"@abaplint/transpiler-cli": "^2.10.49"
17+
"@abaplint/transpiler-cli": "^2.10.61"
1818
}
1919
}

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)