Index: test/Common/DelftTools.Tests/Controls/Swf/UndoRedoTestClasses/Child.cs =================================================================== diff -u -r8edbe5e2130c81b456385607891c6ef98928f88e -r5fc71a385897af92ccb092f2f969b5709afab85a --- test/Common/DelftTools.Tests/Controls/Swf/UndoRedoTestClasses/Child.cs (.../Child.cs) (revision 8edbe5e2130c81b456385607891c6ef98928f88e) +++ test/Common/DelftTools.Tests/Controls/Swf/UndoRedoTestClasses/Child.cs (.../Child.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -3,25 +3,28 @@ namespace DelftTools.Tests.Controls.Swf.UndoRedoTestClasses { - [Entity(FireOnCollectionChange=false)] + [Entity(FireOnCollectionChange = false)] public class Child : IEditableObject { public string Name { get; set; } - public override string ToString() - { - return Name; - } - public bool IsEditing { get; set; } public bool EditWasCancelled { - get { return false; } + get + { + return false; + } } public IEditAction CurrentEditAction { get; private set; } + public override string ToString() + { + return Name; + } + public void BeginEdit(IEditAction action) { CurrentEditAction = action;