Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 940 by
[hidden email]: In Pharo 2.0 the SpyWizard does not take
notice of newly added packages. Possible solution: use RPackageOrganizer
http://code.google.com/p/moose-technology/issues/detail?id=940Describe the problem: what do you get? what do you expect?
In Pharo 2.0 the SpyWizard does not take notice of newly added packages.
How to reproduce the problem: step by step if necessary
- load Spy into Pharo 2.0
- open for example the HapaoWizard and have a look at the packages
available. Close the wizard.
- add a new package to your image
- open the HapaoWizard again: the new package does not appear in the list
of available packages.
Possible solution:
Change
SpyWizard>>packagesList
^ (PackageOrganizer default packageNames select: #isString)
asSortedCollection: [ :a :b | a < b ]
to:
SpyWizard>>packagesList
^ (RPackageOrganizer default packageNames select: #isString)
asSortedCollection: [ :a :b | a < b ]
or perhaps:
SpyWizard>>packagesList
^ (SystemNavigation default packageOrganizerClass default packageNames
select: #isString) asSortedCollection: [ :a :b | a < b ]
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev