Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Corrected argument names of IupFrame constructor |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f6c7d655389c7e03f4b14ce14541d5bf |
User & Date: | murphy 2015-05-02 15:27:52.218 |
Context
2015-05-02
| ||
15:36 | Documentation updates check-in: 02d20dd891 user: murphy tags: trunk, v1.4.0 | |
15:27 | Corrected argument names of IupFrame constructor check-in: f6c7d65538 user: murphy tags: trunk | |
15:15 | Racket bindings for IUP GL controls check-in: 7f3a73e037 user: murphy tags: trunk | |
Changes
Changes to chicken/iup-controls.scm.
︙ | ︙ | |||
22 23 24 25 26 27 28 | (make-constructor-procedure (foreign-lambda nonnull-ihandle "IupCanvas" iname/upcase) #:apply-args (optional-args [action #f]))) (define frame (make-constructor-procedure (foreign-lambda nonnull-ihandle "IupFrame" ihandle) | | | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | (make-constructor-procedure (foreign-lambda nonnull-ihandle "IupCanvas" iname/upcase) #:apply-args (optional-args [action #f]))) (define frame (make-constructor-procedure (foreign-lambda nonnull-ihandle "IupFrame" ihandle) #:apply-args (optional-args [child #f]))) (define tabs (make-constructor-procedure (foreign-lambda* nonnull-ihandle ([ihandle-list handles]) "C_return(IupTabsv((Ihandle **)handles));") #:apply-args list)) |
︙ | ︙ |