FogBugz (Case [Issue]11568) Nautilus - World > System > System Reporter MNU #platformSubtype

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

FogBugz (Case [Issue]11568) Nautilus - World > System > System Reporter MNU #platformSubtype

Pharo Issue Tracker
A FogBugz case was opened by Ben Coman.

Case ID:      11568
Title:        World > System > System Reporter MNU #platformSubtype
Status:       Work Needed
Category:     Bug
Project:      Nautilus
Area:         Misc
Priority:     5 - Fix If Time
Milestone:    Later
Assigned To:  Everyone

URL:          https://pharo.fogbugz.com/default.asp?11568

In World > System > System Reporter, selection any of the 'OS' list items produces a MNU Win32Platform>>platformSubtype.

The cause is the last line of...

SystemReporter >> reportOS: aStream
self header: 'Operating System/Hardware' on: aStream.
aStream
nextPutAll: Smalltalk os platformName; space;
nextPutAll: Smalltalk os version; space;
nextPutAll: Smalltalk os platformSubtype; cr

For one, #platformSubtype is a class-side method,
and two, it is deprecated, use `Smalltalk os subtype` instead.

The following works...

SystemReporter >> reportOS: aStream
self header: 'Operating System/Hardware' on: aStream.
aStream
nextPutAll: Smalltalk os platformName; space;
nextPutAll: Smalltalk os version; space;
nextPutAll: Smalltalk os subtype; cr


You are subscribed to this case.  If you do not want to receive automatic notifications in the future, unsubscribe (https://pharo.fogbugz.com/default.asp?pre=preUnsubscribe&pg=pgEditBug&command=view&ixBug=11568) from this case.

_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker