avoid an NSTableColumn warning

This commit is contained in:
Matthew Flatt 2016-01-08 07:58:53 -07:00
parent 0e344def40
commit dbce2e2878

View File

@ -282,7 +282,7 @@
(define/public (append-column title)
(atomically
(let ([col (as-objc-allocation
(tell (tell NSTableColumn alloc) initWithIdentifier: content-cocoa))])
(tell (tell NSTableColumn alloc) initWithIdentifier: #:type _NSString title))])
(tellv content-cocoa addTableColumn: col)
(tellv (tell col headerCell) setStringValue: #:type _NSString title)
(set! column-cocoas (append column-cocoas (list col)))