Setting fonts, disappering flap, 6703 + 6704

Lic. Edgar J. De Cleene edgardec2001 at yahoo.com.ar
Sun Nov 27 13:49:39 UTC 2005


paul provoost puso en su mail :

> Hi, all,
> 
> I noticed that since image 6703 it is not possible to change the default
> text font without an error and the disappearance of the TOOLS flap.
> 
> Just try it:
> 
> appearance
> standard system fonts
> default text font
> change to the same as it was (!)
> some seconds later there is a walkback.
> 
> Any ideas?
> 
> Cheers,
> 
> Paul Provoost
> The Netherlands
You are absolute right.
I attach a cure.
Submit to Mantis if work for you.

Cheers.

Edgar

-------------- next part --------------
'From Squeak3.9alpha of 4 July 2005 [latest update: #6704] on 27 November 2005 at 10:47:39 am'!
"Change Set:		SyntaxError
Date:			27 November 2005
Author:			Edgar J. De Cleene

fix error reported by Paul Provoost"!


!SyntaxErrorNotification methodsFor: 'accessing' stamp: 'LC 1/6/2002 13:44'!
setClass: aClass code: codeString debugger: aDebugger doitFlag: aBoolean
	inClass _ aClass.
	code _ codeString.
	debugger _ aDebugger.
	doitFlag _ aBoolean ! !


!SyntaxErrorNotification class methodsFor: 'exceptionInstantiator' stamp: 'LC 1/6/2002 13:52'!
inClass: aClass withCode: codeString doitFlag: doitFlag 
	^ (self new
		setClass: aClass
		code: codeString
		debugger: (Debugger context: thisContext)
		doitFlag: doitFlag) signal! !



More information about the Squeak-dev mailing list