James Thanks what is the magic initialize that we typed in your workspace.
Stef On Aug 30, 2009, at 12:21 PM, James Foster wrote: > On #10424 my image became confused with clipboard problems. Somehow, > MacOSClipboard.clipboard became false when it appears that the correct > value is zero (0). When attempting to fix this I found that > ExternalClipboard>>#'initialize' contains the following line, which > probably causes the problem: > > clipboard := [self createClipboard] on: Error do: [:ex | clipboard > = 0] > > I suspect that the correct code should be: > > clipboard := [self createClipboard] on: Error do: [:ex | clipboard := > 0] > or > clipboard := [self createClipboard] on: Error do: [:ex | 0] > > > > _______________________________________________ > Pharo-project mailing list > [email protected] > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project _______________________________________________ Pharo-project mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
