Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (409 - 411 of 1030)

Ticket Resolution Summary Owner Reporter
#526 invalid Weird slot-value corruption (64-bit only) R. Matthew Emerson Ron Garret
Description

I do this:

(defclass scribble-view (ns:ns-view)
  ((path :initform (#/bezierPath ns:ns-bezier-path)))
  (:metaclass ns:+ns-object))

(defun make-scribble-window ()
  (ccl::with-autorelease-pool
   (let* ((rect (ns:make-ns-rect 0 0 300 300))
	  (w (make-instance 'ns:ns-window
			    :with-content-rect rect
			    :style-mask (logior #$NSTitledWindowMask
					       #$NSClosableWindowMask
					       #$NSMiniaturizableWindowMask
					       #$NSResizableWindowMask)
			    :backing #$NSBackingStoreBuffered
			    :defer t))
          (v (make-instance 'scribble-view)))
     (#/setTitle: w #@"Scribble")
     (#/setContentView: w v)
     (#/center w)
     (#/orderFront: w nil)
     (print (slot-value v 'path))
     v)))

(slot-value (make-scribble-window) 'path)

In 32-bit CCL this does what I would expect, namely, return an NS-BEZIER-PATH object. In 64-bit CCL it returns a bogus ObjC object. But the PRINTed value of (slot-value v 'path) is an NS-BEZIER-PATH object, so somehow the PATH slot is being corrupted between the PRINT and returning V from MAKE-SCRIBBLE-WINDOW.

#362 duplicate Webkit doesn't work in 1.2 Gary Byers gz
Description

Alex Repenning reports that the Webkit example does not work in 1.2.

#639 duplicate WebKit example crashes on Snow Leopard Joubert Nel
Description

After loading webkit.lisp and then calling BROWSER-WINDOW, CCL crashes on Snow Leopard.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.