Re: Issue 2611 in pharo: DNU when clicking on active text in class comment

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

Re: Issue 2611 in pharo: DNU when clicking on active text in class comment

pharo
Updates:
        Status: Closed

Comment #7 on issue 2611 by stephane.ducasse: DNU when clicking on active  
text in class comment
http://code.google.com/p/pharo/issues/detail?id=2611

I tried your script and it is empty now on 12286

I also tried

ProtoObject allSubclasses do: [:class |
        (class comment class = Text) ifTrue: [
                Transcript cr; show: class]
]

and it is empty I guess that the issue is fixed


Reply | Threaded
Open this post in threaded view
|

Re: Issue 2611 in pharo: DNU when clicking on active text in class comment

pharo
Updates:
        Status: Fixed

Comment #8 on issue 2611 by [hidden email]: DNU when clicking on  
active text in class comment
http://code.google.com/p/pharo/issues/detail?id=2611

Yes, all class comments are plain strings. Just checked using the following  
code:

ProtoObject allSubclasses do: [:class |
        (class comment class = ByteString) ifFalse: [
  [Transcript cr; show: class]
]]




Reply | Threaded
Open this post in threaded view
|

Re: Issue 2611 in pharo: DNU when clicking on active text in class comment

pharo
Updates:
        Status: Closed

Comment #9 on issue 2611 by marcus.denker: DNU when clicking on active text  
in class comment
http://code.google.com/p/pharo/issues/detail?id=2611

(No comment was entered for this change.)