1
0
mirror of https://github.com/chylex/Backup-Essentials.git synced 2025-08-10 15:40:41 +02:00

Revert "Changed data storage change tracker to be a structure"

This reverts commit 57eefcb2f1.
This commit is contained in:
chylex 2015-04-15 22:43:59 +02:00
parent 57eefcb2f1
commit ebf33ac2aa

View File

@ -22,7 +22,7 @@ namespace BackupEssentials.Backup.Data{
public static readonly ObservableCollection<HistoryEntry> HistoryEntryList = new ObservableCollection<HistoryEntry>(new List<HistoryEntry>(32));
public static readonly ChangeTracker HistoryEntryListTracker = new ChangeTracker();
public struct ChangeTracker{
public class ChangeTracker{
public bool Changed;
}