Issue 4904 in pharo: MorphTreeMorph improvements

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

Re: Issue 4904 in pharo: MorphTreeMorph improvements

pharo

Comment #20 on issue 4904 by [hidden email]: MorphTreeMorph  
improvements
http://code.google.com/p/pharo/issues/detail?id=4904

Thanks I will give a try now.



_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4904 in pharo: MorphTreeMorph improvements

pharo
Updates:
        Status: Closed

Comment #21 on issue 4904 by [hidden email]: MorphTreeMorph  
improvements
http://code.google.com/p/pharo/issues/detail?id=4904

Integrated in 14191.
Alain indeed it worked.



_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4904 in pharo: MorphTreeMorph improvements

pharo

Comment #22 on issue 4904 by [hidden email]: MorphTreeMorph improvements
http://code.google.com/p/pharo/issues/detail?id=4904

unfortunately AnObsoleteTMorphTreeModel is still here after the update
:(

Model subclass: #MorphTreeModel
        uses: AnObsoleteTMorphTreeModel
        instanceVariableNames: 'selection announcer rootItems autoMultiSelection  
headerLabel multiSelection wrapBlockOrSelector isCheckList'
        classVariableNames: ''
        poolDictionaries: ''
        category: 'Morphic-MorphTreeWidget'


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4904 in pharo: MorphTreeMorph improvements

pharo

Comment #23 on issue 4904 by [hidden email]: MorphTreeMorph  
improvements
http://code.google.com/p/pharo/issues/detail?id=4904

Ok I will recompile it again.
There is really a problem.


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4904 in pharo: MorphTreeMorph improvements

pharo

Comment #24 on issue 4904 by [hidden email]: MorphTreeMorph  
improvements
http://code.google.com/p/pharo/issues/detail?id=4904

Funnily enough I cannot recompile the class, the trait comes back :(


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4904 in pharo: MorphTreeMorph improvements

pharo

Comment #25 on issue 4904 by [hidden email]: MorphTreeMorph  
improvements
http://code.google.com/p/pharo/issues/detail?id=4904

TreeMorphModel self traitComposition: {}

made it.


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4904 in pharo: MorphTreeMorph improvements

pharo

Comment #26 on issue 4904 by [hidden email]: MorphTreeMorph  
improvements
http://code.google.com/p/pharo/issues/detail?id=4904

It is working .. in the image but I release the code I got a DNU

        MorphTreeModel setTraitComposition: {}.

telling to me that Array does not understand assertValidUser:



setTraitComposition: aTraitComposition
        | oldComposition |
        (self hasTraitComposition not and: [aTraitComposition isEmpty]) ifTrue:  
[^self].
        aTraitComposition assertValidUser: self.

        oldComposition := self traitComposition.
        self traitComposition: aTraitComposition.
        self applyChangesOfNewTraitCompositionReplacing: oldComposition.
       
        oldComposition traits do: [:each | each removeUser: self].
        aTraitComposition traits do: [:each | each addUser: self]


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 4904 in pharo: MorphTreeMorph improvements

pharo

Comment #27 on issue 4904 by [hidden email]: MorphTreeMorph  
improvements
http://code.google.com/p/pharo/issues/detail?id=4904

Fixed

MorphTreeModel setTraitComposition: {} asTraitComposition.


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