From d845b08a9102a75f82a9d606148df0c36cf56f10 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Wed, 6 May 2009 18:42:08 +0000 Subject: [PATCH] IObservableCollection was internal - fixed git-svn-id: file:///srv/devel/repo-conversion/nusu@135 d2e56fa2-650e-0410-a79f-9358c0239efd --- Source/Collections/IObservableCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Collections/IObservableCollection.cs b/Source/Collections/IObservableCollection.cs index 51cc620..295c165 100644 --- a/Source/Collections/IObservableCollection.cs +++ b/Source/Collections/IObservableCollection.cs @@ -26,7 +26,7 @@ namespace Nuclex.Support.Collections { /// Interface for collections that can be observed /// Type of items managed in the collection - interface IObservableCollection { + public interface IObservableCollection { /// Raised when an item has been added to the collection event EventHandler> ItemAdded;