Issue 856 in moose-technology: ROAbstractElement>>remove inconsistent nested behaviour

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

Issue 856 in moose-technology: ROAbstractElement>>remove inconsistent nested behaviour

moose-technology
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 856 by [hidden email]: ROAbstractElement>>remove  
inconsistent nested behaviour
http://code.google.com/p/moose-technology/issues/detail?id=856

I would expect ROAbstractElement>>remove to work consistently whether it  
belongs to the top-level view or nested in another element.  However it is  
not as demonstrate by the code below having this result...

a ROElement<#x>
------
a ROElement<#x>
a ROElement<#y>

=========================================
v := ROView new.
x := ROElement on: #x.
y := ROElement on: #y.
v add: x.
v add: y. "this line different"
y remove.
v allElementsDo: [ :el | Transcript crShow: el ].
Transcript crShow: '------'.
v := ROView new.
x := ROElement on: #x.
y := ROElement on: #y.
v add: x.
x add: y. "this line different"
y remove.
v allElementsDo: [ :el | Transcript crShow: el ].





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 856 in moose-technology: ROAbstractElement>>remove inconsistent nested behaviour

moose-technology
Updates:
        Status: Fixed
        Labels: Component-Roassal

Comment #1 on issue 856 by [hidden email]: ROAbstractElement>>remove  
inconsistent nested behaviour
http://code.google.com/p/moose-technology/issues/detail?id=856

In Roassal 1.178.

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 856 in moose-technology: ROAbstractElement>>remove inconsistent nested behaviour

moose-technology
Updates:
        Labels: Milestone-4.7

Comment #2 on issue 856 by [hidden email]: ROAbstractElement>>remove  
inconsistent nested behaviour
http://code.google.com/p/moose-technology/issues/detail?id=856

(No comment was entered for this change.)

--
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