Revision adfa4645 trunk/Pithos.Client.WPF/LogConsole/LogConsoleViewModel.cs

b/trunk/Pithos.Client.WPF/LogConsole/LogConsoleViewModel.cs
27 27
        private static readonly log4net.ILog Log = log4net.LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
28 28

  
29 29
        private readonly MemoryAppender _memoryAppender;
30
        private IObservableCollection<LoggingEvent> _events;
30
        private BindableCollection<LoggingEvent> _events;
31 31

  
32 32
        public LogConsoleViewModel()
33 33
        {
......
51 51
            Events =new BindableCollection<LoggingEvent>(_memoryAppender.GetEvents());
52 52
        }
53 53

  
54
        protected IObservableCollection<LoggingEvent> Events
54
        protected BindableCollection<LoggingEvent> Events
55 55
        {
56 56
            get {
57 57
                return _events;

Also available in: Unified diff