Fixed Warnings

This commit is contained in:
Matthias Heil
2026-04-05 08:00:09 +02:00
parent dfb879bfb3
commit 511a5f9f51
21 changed files with 104 additions and 115 deletions
@@ -13,7 +13,7 @@ public partial class LogViewerControl : UserControl
}
private ILogDataStoreImpl? vm;
private ILogDataStoreCore? vm;
private LogModel? item;
private void OnDataContextChanged(object? sender, EventArgs e)
@@ -21,7 +21,7 @@ public partial class LogViewerControl : UserControl
if (DataContext is null)
return;
vm = (ILogDataStoreImpl)DataContext;
vm = (ILogDataStoreCore)DataContext;
vm.DataStore.Entries.CollectionChanged += OnCollectionChanged;
}