Changeset main,46 for main/widget/numberbox.lisp
- Timestamp:
- 11/12/2007 07:08:49 PM (19 years ago)
- branch-nick:
- tui
- revision id:
- dsowen@tux-20071112190849-f4iha3mmvx2nskce
- File:
-
- 1 edited
-
main/widget/numberbox.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
main/widget/numberbox.lisp
r40 r46 32 32 (setf (text data) s))) 33 33 34 (defun create-numberbox (parent-window y x data width) 34 (defun create-numberbox (parent-window y x data width &key 35 (inactive-background '(#\Space 0)) 36 (active-background '(#\Space 0))) 35 37 (let* ((data-wrapper (make-instance 'numberbox-data :data data :width width)) 36 (textbox (create-textbox parent-window y x data-wrapper width))) 38 (textbox (create-textbox parent-window y x data-wrapper width 39 :inactive-background inactive-background 40 :active-background active-background))) 37 41 (change-class textbox 'numberbox))) 38 42
Note: See TracChangeset
for help on using the changeset viewer.
