signature of MAKE-SELECT-LIST changed, adapt.

This commit is contained in:
eknauel 2005-05-27 08:01:24 +00:00
parent f681d13f49
commit db732404dd
1 changed files with 4 additions and 4 deletions

View File

@ -24,10 +24,10 @@
(define (make-inspector-selection-list num-cols num-lines focus-obj)
(let ((menu (prepare-menu focus-obj)))
(make-select-list
(zip
(map cdr menu) ;; drop name
(map (lambda (e) #t) menu) ;; all are selectable
(map (lambda (e) (layout-menu-entry num-cols e)) menu))
(map (lambda (e)
(make-unmarked-element
(cdr e) #t (layout-menu-entry num-cols e)))
menu)
num-lines)))
(define (make-header focus-obj num-cols)