Skip to content

Commit 144a89d

Browse files
committed
inherit
1 parent 0d92490 commit 144a89d

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/cl_gui_alv_grid.clas.abap

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CLASS cl_gui_alv_grid DEFINITION PUBLIC.
1+
CLASS cl_gui_alv_grid DEFINITION PUBLIC INHERITING FROM cl_gui_control.
22
PUBLIC SECTION.
33

44
METHODS constructor

src/cl_gui_picture.clas.abap

+8
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,18 @@ CLASS cl_gui_picture DEFINITION INHERITING FROM cl_gui_control PUBLIC.
1313
METHODS set_display_mode
1414
IMPORTING
1515
display_mode TYPE i.
16+
17+
METHODS load_picture_from_url_async
18+
IMPORTING
19+
url TYPE c.
1620
ENDCLASS.
1721

1822
CLASS cl_gui_picture IMPLEMENTATION.
1923

24+
METHOD load_picture_from_url_async.
25+
RETURN. " todo, implement method
26+
ENDMETHOD.
27+
2028
METHOD free.
2129
RETURN. " todo, implement method
2230
ENDMETHOD.

0 commit comments

Comments
 (0)