gui: removed CWidget_GetChildBySelector (use OBJ_GetChildBySelector).

This commit is contained in:
Martin Preuss
2026-05-08 00:30:10 +02:00
parent 31dca13123
commit 5513878b24
2 changed files with 9 additions and 56 deletions

View File

@@ -89,30 +89,23 @@ CDialog_Init_ret:
; @routine CDialog_GetChildBySelector
;
; @param Y pointer to MainWindow
; @param Z pointer to dialog configuration
; @param r16 selector to search for
; @return CFLAG set if widget found, cleared otherwise
; @return r19:r18 resulting widget
; @clobbers R16, R17, R18, R19
; @clobbers R16-R19
CDialog_GetChildBySelector:
push r16
bigcall MainWindow_GetFirstChildOfContentWidget ; (r16)
bigcall MainWindow_GetFirstChildOfContentWidget ; r19:r18=result (r16)
pop r16
brcc CDialog_GetChildBySelector_ret
push zl
push zh
ldd zl, Y+CDIALOG_OFFS_CONFIG_LO
ldd zh, Y+CDIALOG_OFFS_CONFIG_HI
push yl
push yh
mov yl, r18
mov yh, r19
bigcall CWidget_GetChildBySelector
pop yh
pop yl
pop zh
pop zl
push yl
push yh
mov yl, r18
mov yh, r19
bigcall OBJ_GetChildBySelector ; (R17, R18, R19)
pop yh
pop yl
CDialog_GetChildBySelector_ret:
ret
; @end