mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
Transitioned Profiles to using ProfileRepository
Moving to using a ProfileRespository will make it easier when moving to a WPF style app, and it will allow some freedom if I want to change the storage to a database or soemthing different.
This commit is contained in:
@ -329,7 +329,7 @@ namespace HeliosPlus
|
||||
// Lookup all the Profile Names in the Saved Profiles
|
||||
foreach (ShortcutItem updatedShortcut in _allShortcuts)
|
||||
{
|
||||
foreach (ProfileItem profile in ProfileItem.AllSavedProfiles)
|
||||
foreach (ProfileItem profile in ProfileRepository.AllProfiles)
|
||||
{
|
||||
|
||||
if (profile.Name.Equals(updatedShortcut.ProfileName))
|
||||
|
Reference in New Issue
Block a user