Index: src/Common/DelftTools.Controls/IReusableView.cs
===================================================================
diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a
--- src/Common/DelftTools.Controls/IReusableView.cs (.../IReusableView.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9)
+++ src/Common/DelftTools.Controls/IReusableView.cs (.../IReusableView.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
@@ -7,16 +7,16 @@
/// is not locked the view will be reused.
/// When implementing this interface the view must expect data will be set after construction to render new objects.
///
- public interface IReusableView:IView
+ public interface IReusableView : IView
{
///
- /// Required. Determines whether the view is tight to the data it renders.
+ /// Required. Event should be fired when lock changes. Allows to update the UI (image for the tab)
///
- bool Locked { get; set; }
+ event EventHandler LockedChanged;
///
- /// Required. Event should be fired when lock changes. Allows to update the UI (image for the tab)
+ /// Required. Determines whether the view is tight to the data it renders.
///
- event EventHandler LockedChanged;
+ bool Locked { get; set; }
}
}
\ No newline at end of file