Status: Accepted
Owner:
[hidden email]
CC:
[hidden email]
Labels: Type-Bug Milestone-2.0
New issue 6099 by
[hidden email]: red cross during updates
http://code.google.com/p/pharo/issues/detail?id=6099showProgressFor: aClass
"Announce that we're processing aClass"
progress == nil ifTrue:[^self].
aClass isObsolete ifTrue:[^self].
currentClassIndex := currentClassIndex + 1.
(aClass hasMethods and: [aClass wantsRecompilationProgressReported])
ifTrue:
[progress value: ('Recompiling ', aClass name,' (', currentClassIndex
printString,'/', maxClassIndex printString,')')]
Apparently progress value: is expecting a number.
Now progress value: maxClassIndex does not display any message. so
probably the solution is elsewhere.
_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker