Changeset main,45 for main/widget/label.lisp
- Timestamp:
- 11/09/2007 12:29:19 AM (19 years ago)
- branch-nick:
- tui-new
- revision id:
- dsowen@fugue88.ws-20071109002919-u3q6f17xwbxvy3b0
- File:
-
- 1 edited
-
main/widget/label.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
main/widget/label.lisp
r40 r45 19 19 (when raw-text 20 20 (setf text (enquote text))) 21 (make-instance 'label 22 :parent-window parent-window :row row :column column 23 :text text)) 21 (let ((inst (make-instance 'label 22 :parent-window parent-window 23 :row row 24 :column column 25 :text text))) 26 (draw inst) 27 inst)) 24 28 25 29 (defmethod destroy ((label label))) 26 30 27 (defmethod activate ((label label) &optional callback)) 31 (defmethod activate ((label label) &optional callback) 32 #\Tab)
Note: See TracChangeset
for help on using the changeset viewer.
